summaryrefslogtreecommitdiffstats
path: root/views/controls/throbber.cc
diff options
context:
space:
mode:
authorrbyers@chromium.org <rbyers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-26 19:06:41 +0000
committerrbyers@chromium.org <rbyers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-26 19:06:41 +0000
commitf3e20fb203bc10e7c7d03ce5550a20371fd38872 (patch)
treeeb057754ca12692b98cd794a0d5a4e00108bedf2 /views/controls/throbber.cc
parent39ce1e5eaef998987ff36afc48cebeed516c41b2 (diff)
downloadchromium_src-f3e20fb203bc10e7c7d03ce5550a20371fd38872.zip
chromium_src-f3e20fb203bc10e7c7d03ce5550a20371fd38872.tar.gz
chromium_src-f3e20fb203bc10e7c7d03ce5550a20371fd38872.tar.bz2
Redesignate checkmark resource and add themed IDR_INPUT_GOOD image
The resources IDR_INPUT_ALERT and IDR_INPUT_GOOD are used in tandem. This CL makes them both part of the theme resources. Furthermore, the IDR_INPUT_GOOD image is used by the checkmark throbber as a checkmark. It is simply renamed to be as such. This work is done in anticipation of using IDR_INPUT_ALRT and IDR_INPUT_GOOD in tandem as part of changing the edit search engine dialog to Web UI. BUG=None TEST=None Review URL: http://codereview.chromium.org/8044019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102771 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/throbber.cc')
-rw-r--r--views/controls/throbber.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/throbber.cc b/views/controls/throbber.cc
index 741b0a6..7719d0d 100644
--- a/views/controls/throbber.cc
+++ b/views/controls/throbber.cc
@@ -167,7 +167,7 @@ void CheckmarkThrobber::InitClass() {
static bool initialized = false;
if (!initialized) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
- checkmark_ = rb.GetBitmapNamed(IDR_INPUT_GOOD);
+ checkmark_ = rb.GetBitmapNamed(IDR_CHECKMARK);
initialized = true;
}
}