Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(665)

Side by Side Diff: ui/linux_ui/linux_ui.h

Issue 17494005: linux_aura: Three fixes for switching themes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to tot Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_LINUX_UI_LINUX_UI_H_ 5 #ifndef UI_LINUX_UI_LINUX_UI_H_
6 #define UI_LINUX_UI_LINUX_UI_H_ 6 #define UI_LINUX_UI_LINUX_UI_H_
7 7
8 #include "third_party/skia/include/core/SkColor.h" 8 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/linux_ui/linux_ui_export.h" 9 #include "ui/linux_ui/linux_ui_export.h"
10 #include "ui/shell_dialogs/linux_shell_dialog.h" 10 #include "ui/shell_dialogs/linux_shell_dialog.h"
(...skipping 29 matching lines...) Expand all
40 // environment. 40 // environment.
41 // 41 //
42 // Can return NULL, in case no toolkit has been set. (For example, if we're 42 // Can return NULL, in case no toolkit has been set. (For example, if we're
43 // running with the "--ash" flag.) 43 // running with the "--ash" flag.)
44 static const LinuxUI* instance(); 44 static const LinuxUI* instance();
45 45
46 // Returns an themed image per theme_provider.h 46 // Returns an themed image per theme_provider.h
47 virtual bool UseNativeTheme() const = 0; 47 virtual bool UseNativeTheme() const = 0;
48 virtual gfx::Image GetThemeImageNamed(int id) const = 0; 48 virtual gfx::Image GetThemeImageNamed(int id) const = 0;
49 virtual bool GetColor(int id, SkColor* color) const = 0; 49 virtual bool GetColor(int id, SkColor* color) const = 0;
50 virtual bool HasCustomImage(int id) const = 0;
50 51
51 // Returns a NativeTheme that will provide system colors and draw system 52 // Returns a NativeTheme that will provide system colors and draw system
52 // style widgets. 53 // style widgets.
53 virtual NativeTheme* GetNativeTheme() const = 0; 54 virtual NativeTheme* GetNativeTheme() const = 0;
55
56 // Returns whether we should be using the native theme provided by this
57 // object by default.
58 virtual bool GetDefaultUsesSystemTheme() const = 0;
54 }; 59 };
55 60
56 } // namespace ui 61 } // namespace ui
57 62
58 #endif // UI_LINUX_UI_LINUX_UI_H_ 63 #endif // UI_LINUX_UI_LINUX_UI_H_
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | ui/views/widget/desktop_aura/desktop_root_window_host_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698