diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-12 21:20:04 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-12 21:20:04 +0000 |
commit | 5db2a6ed0d09ef82cf84ba2677ecfcdff6192c79 (patch) | |
tree | ee5349952c352500e5ac8552653c89a21cd61747 /chrome/browser/views/download_item_view.cc | |
parent | f961489869259f538e6f9be39e2c52305d5e918f (diff) | |
download | chromium_src-5db2a6ed0d09ef82cf84ba2677ecfcdff6192c79.zip chromium_src-5db2a6ed0d09ef82cf84ba2677ecfcdff6192c79.tar.gz chromium_src-5db2a6ed0d09ef82cf84ba2677ecfcdff6192c79.tar.bz2 |
Removing static initializers.
BUG=None
TEST=Make sure download bar is still working fine.
Review URL: http://codereview.chromium.org/2431
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/download_item_view.cc')
-rw-r--r-- | chrome/browser/views/download_item_view.cc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chrome/browser/views/download_item_view.cc b/chrome/browser/views/download_item_view.cc index bde72f2..914a782 100644 --- a/chrome/browser/views/download_item_view.cc +++ b/chrome/browser/views/download_item_view.cc @@ -139,10 +139,8 @@ DownloadItemView::DownloadItemView(DownloadItem* download, normal_body_image_set_.top_left->height() + normal_body_image_set_.bottom_left->height()); - int progress_icon_size = - download_util::GetProgressIconSize(download_util::SMALL); - if (progress_icon_size > box_height_) - box_y_ = (progress_icon_size - box_height_) / 2; + if (download_util::kSmallProgressIconSize > box_height_) + box_y_ = (download_util::kSmallProgressIconSize - box_height_) / 2; else box_y_ = kVerticalPadding; @@ -330,21 +328,22 @@ void DownloadItemView::Paint(ChromeCanvas* canvas) { } // Print the text, left aligned. - int progress_icon_size = - download_util::GetProgressIconSize(download_util::SMALL); // Last value of x was the end of the right image, just before the button. if (show_status_text_) { int y = box_y_ + kVerticalPadding; canvas->DrawStringInt(file_name_, font_, kFileNameColor, - progress_icon_size, y, kTextWidth, font_.height()); + download_util::kSmallProgressIconSize, y, + kTextWidth, font_.height()); y += font_.height() + kVerticalTextPadding; canvas->DrawStringInt(status_text_, font_, kStatusColor, - progress_icon_size, y, kTextWidth, font_.height()); + download_util::kSmallProgressIconSize, y, + kTextWidth, font_.height()); } else { int y = box_y_ + (box_height_ - font_.height()) / 2; canvas->DrawStringInt(file_name_, font_, kFileNameColor, - progress_icon_size, y, kTextWidth, font_.height()); + download_util::kSmallProgressIconSize, y, + kTextWidth, font_.height()); } // Paint the icon. @@ -365,8 +364,9 @@ void DownloadItemView::Paint(ChromeCanvas* canvas) { } // Draw the icon image - int offset = download_util::GetProgressIconOffset(download_util::SMALL); - canvas->DrawBitmapInt(*icon, offset, offset); + canvas->DrawBitmapInt(*icon, + download_util::kSmallProgressIconOffset, + download_util::kSmallProgressIconOffset); } } @@ -403,7 +403,7 @@ void DownloadItemView::SetState(State body_state, State drop_down_state) { void DownloadItemView::GetPreferredSize(CSize* out) { int width = kLeftPadding + normal_body_image_set_.top_left->width(); - width += download_util::GetProgressIconSize(download_util::SMALL); + width += download_util::kSmallProgressIconSize; width += kTextWidth; width += normal_body_image_set_.top_right->width(); width += normal_drop_down_image_set_.top->width(); @@ -411,7 +411,7 @@ void DownloadItemView::GetPreferredSize(CSize* out) { out->cx = width; out->cy = std::max<int>( 2 * kVerticalPadding + 2 * font_.height() + kVerticalTextPadding, - download_util::GetProgressIconSize(download_util::SMALL)); + download_util::kSmallProgressIconSize); } void DownloadItemView::OnMouseExited(const ChromeViews::MouseEvent& event) { |