diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 02:33:38 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 02:33:38 +0000 |
commit | 7b3aa961e8905b04fbe185f85a78a4b6b241ea5d (patch) | |
tree | 45ac7aedca9bcb546559707d246f971219a41f22 /chrome/views/controls/throbber.cc | |
parent | 679092e9bebd5696e633967caa22399086e51ea3 (diff) | |
download | chromium_src-7b3aa961e8905b04fbe185f85a78a4b6b241ea5d.zip chromium_src-7b3aa961e8905b04fbe185f85a78a4b6b241ea5d.tar.gz chromium_src-7b3aa961e8905b04fbe185f85a78a4b6b241ea5d.tar.bz2 |
Bustage fix:
Add back these files which I removed earlier since Linux is using them.
The resources are duplicate until I collapse them into src/app/ later this week.
Review URL: http://codereview.chromium.org/100320
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15182 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/controls/throbber.cc')
-rw-r--r-- | chrome/views/controls/throbber.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/views/controls/throbber.cc b/chrome/views/controls/throbber.cc index 58d1ac8..e8a8144 100644 --- a/chrome/views/controls/throbber.cc +++ b/chrome/views/controls/throbber.cc @@ -23,7 +23,7 @@ Throbber::Throbber(int frame_time_ms, frames_(NULL), frame_time_(TimeDelta::FromMilliseconds(frame_time_ms)) { ResourceBundle &rb = ResourceBundle::GetSharedInstance(); - frames_ = rb.GetBitmapNamed(IDR_THROBBER); + frames_ = rb.GetBitmapNamed(IDR_VIEWS_THROBBER); DCHECK(frames_->width() > 0 && frames_->height() > 0); DCHECK(frames_->width() % frames_->height() == 0); frame_count_ = frames_->width() / frames_->height(); @@ -160,7 +160,7 @@ void CheckmarkThrobber::InitClass() { static bool initialized = false; if (!initialized) { ResourceBundle& rb = ResourceBundle::GetSharedInstance(); - checkmark_ = rb.GetBitmapNamed(IDR_INPUT_GOOD); + checkmark_ = rb.GetBitmapNamed(IDR_VIEWS_INPUT_GOOD); initialized = true; } } |