Index: ui/linux_ui/linux_ui.h |
diff --git a/ui/linux_ui/linux_ui.h b/ui/linux_ui/linux_ui.h |
deleted file mode 100644 |
index f609e9a78a01675694bb539c3dfae991be9c864f..0000000000000000000000000000000000000000 |
--- a/ui/linux_ui/linux_ui.h |
+++ /dev/null |
@@ -1,77 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef UI_LINUX_UI_LINUX_UI_H_ |
-#define UI_LINUX_UI_LINUX_UI_H_ |
- |
-#include "third_party/skia/include/core/SkColor.h" |
-#include "ui/linux_ui/linux_ui_export.h" |
-#include "ui/linux_ui/status_icon_linux.h" |
-#include "ui/shell_dialogs/linux_shell_dialog.h" |
- |
-// The main entrypoint into Linux toolkit specific code. GTK code should only |
-// be executed behind this interface. |
- |
-namespace gfx { |
-class Image; |
-} |
- |
-namespace ui { |
-class NativeTheme; |
- |
-// Adapter class with targets to render like different toolkits. Set by any |
-// project that wants to do linux desktop native rendering. |
-// |
-// TODO(erg): We're hardcoding GTK2, when we'll need to have backends for (at |
-// minimum) GTK2 and GTK3. LinuxUI::instance() should actually be a very |
-// complex method that pokes around with dlopen against a libuigtk2.so, a |
-// liuigtk3.so, etc. |
-// |
-// TODO(erg): This class should be folded into ui/views/ instead of living in |
-// its own component once we've deleted out the GTK+ port. |
-class LINUX_UI_EXPORT LinuxUI : public LinuxShellDialog { |
- public: |
- virtual ~LinuxUI() {} |
- |
- // Sets the dynamically loaded singleton that draws the desktop native UI. |
- static void SetInstance(LinuxUI* instance); |
- |
- // Returns a LinuxUI instance for the toolkit used in the user's desktop |
- // environment. |
- // |
- // Can return NULL, in case no toolkit has been set. (For example, if we're |
- // running with the "--ash" flag.) |
- static const LinuxUI* instance(); |
- |
- // Returns an themed image per theme_provider.h |
- virtual bool UseNativeTheme() const = 0; |
- virtual gfx::Image GetThemeImageNamed(int id) const = 0; |
- virtual bool GetColor(int id, SkColor* color) const = 0; |
- virtual bool HasCustomImage(int id) const = 0; |
- |
- // Returns a NativeTheme that will provide system colors and draw system |
- // style widgets. |
- virtual NativeTheme* GetNativeTheme() const = 0; |
- |
- // Returns whether we should be using the native theme provided by this |
- // object by default. |
- virtual bool GetDefaultUsesSystemTheme() const = 0; |
- |
- // Sets visual properties in the desktop environment related to download |
- // progress, if available. |
- virtual void SetDownloadCount(int count) const = 0; |
- virtual void SetProgressFraction(float percentage) const = 0; |
- |
- // Checks for platform support for status icons. |
- virtual bool IsStatusIconSupported() const = 0; |
- |
- // Create a native status icon. |
- virtual scoped_ptr<StatusIconLinux> CreateLinuxStatusIcon( |
- const gfx::ImageSkia& image, |
- const string16& tool_tip) const = 0; |
-}; |
- |
-} // namespace ui |
- |
-#endif // UI_LINUX_UI_LINUX_UI_H_ |