blob: b2b2cb4edfb9b8f23dcbc789a4dd97929cd06d81 [file] [log] [blame]
Tom Anderson80d3ad42022-05-03 12:09:271// Copyright 2022 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef UI_VIEWS_LINUX_UI_LINUX_UI_FACTORY_H_
6#define UI_VIEWS_LINUX_UI_LINUX_UI_FACTORY_H_
7
8#include <memory>
9
10namespace views {
11class LinuxUI;
12}
13
14// Returns a new LinuxUI based on a Linux toolkit. May return nullptr if the
15// preferred toolkits are unavailable.
16std::unique_ptr<views::LinuxUI> CreateLinuxUi();
17
18#endif // UI_VIEWS_LINUX_UI_LINUX_UI_FACTORY_H_