diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-02 12:19:46 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-02 12:19:46 +0000 |
commit | 49205175a02b91584e8451d7bae335ab7f9bf583 (patch) | |
tree | 2d6cc2a31f983c05752d70bf9b431bbd43f18745 /ui/base | |
parent | 6d24e40efce5f7ecc658f2159a2a274b5d0f00de (diff) | |
download | chromium_src-49205175a02b91584e8451d7bae335ab7f9bf583.zip chromium_src-49205175a02b91584e8451d7bae335ab7f9bf583.tar.gz chromium_src-49205175a02b91584e8451d7bae335ab7f9bf583.tar.bz2 |
Get the default color of toolbar separator through ThemeService.
Note: This is a TODO for ben@ in resource_bundle.h
R=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9315042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120199 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base')
-rw-r--r-- | ui/base/resource/resource_bundle.cc | 2 | ||||
-rw-r--r-- | ui/base/resource/resource_bundle.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/ui/base/resource/resource_bundle.cc b/ui/base/resource/resource_bundle.cc index c557dfb..197002e 100644 --- a/ui/base/resource/resource_bundle.cc +++ b/ui/base/resource/resource_bundle.cc @@ -45,8 +45,6 @@ ResourceBundle* ResourceBundle::g_shared_instance_ = NULL; // static const SkColor ResourceBundle::toolbar_color = SkColorSetRGB(210, 225, 246); -const SkColor ResourceBundle::toolbar_separator_color = - SkColorSetRGB(182, 186, 192); // static std::string ResourceBundle::InitSharedInstanceWithLocale( diff --git a/ui/base/resource/resource_bundle.h b/ui/base/resource/resource_bundle.h index cb966c8..d8f5119 100644 --- a/ui/base/resource/resource_bundle.h +++ b/ui/base/resource/resource_bundle.h @@ -193,7 +193,6 @@ class UI_EXPORT ResourceBundle { // TODO(beng): These browser-specific concepts should move to ThemeProvider. static const SkColor toolbar_color; - static const SkColor toolbar_separator_color; private: FRIEND_TEST_ALL_PREFIXES(ResourceBundle, LoadDataResourceBytes); |