blob: 74e46d68c12b89cbc3d89ff4bb30f63f6e3599c9 [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
Tom Anderson4ee83742022-07-14 20:58:415#ifndef UI_LINUX_LINUX_UI_FACTORY_H_
6#define UI_LINUX_LINUX_UI_FACTORY_H_
Tom Anderson80d3ad42022-05-03 12:09:277
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
Tom Anderson4ee83742022-07-14 20:58:4118#endif // UI_LINUX_LINUX_UI_FACTORY_H_