diff options
author | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 00:14:41 +0000 |
---|---|---|
committer | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 00:14:41 +0000 |
commit | 0d54ab228ff3fa7dd6c64dcdabadd6ded2330bbb (patch) | |
tree | 19a92ad759e3203afca24a95d9e5ffb880415863 /ui | |
parent | e4642b6c93be31672fb48d0aaf7c426cd7dad389 (diff) | |
download | chromium_src-0d54ab228ff3fa7dd6c64dcdabadd6ded2330bbb.zip chromium_src-0d54ab228ff3fa7dd6c64dcdabadd6ded2330bbb.tar.gz chromium_src-0d54ab228ff3fa7dd6c64dcdabadd6ded2330bbb.tar.bz2 |
Aura GTK theme: Use gtk icons and borders for back/forward/home.
The color stuff is copied from the gtk_theme_service.cc, but the
GtkButton and GtkIcon rendering code is all new.
TODO: How am I going to convert the background for the omnibox?
BUG=130810
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10540147
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142036 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/base/linux_ui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/base/linux_ui.h b/ui/base/linux_ui.h index 3af1461..14ce9dc 100644 --- a/ui/base/linux_ui.h +++ b/ui/base/linux_ui.h @@ -42,7 +42,7 @@ class UI_EXPORT LinuxUI { // Returns an themed image per theme_provider.h virtual bool UseNativeTheme() const = 0; virtual gfx::Image* GetThemeImageNamed(int id) const = 0; - virtual SkColor GetColor(int id) const = 0; + virtual bool GetColor(int id, SkColor* color) const = 0; }; } // namespace ui |