Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6045)

Unified Diff: chrome/views/bitmap_scroll_bar.cc

Issue 42013: Slight code change to make some global variables const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/views/bitmap_scroll_bar.h ('k') | chrome/views/chrome_menu.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/views/bitmap_scroll_bar.cc
===================================================================
--- chrome/views/bitmap_scroll_bar.cc (revision 11293)
+++ chrome/views/bitmap_scroll_bar.cc (working copy)
@@ -221,7 +221,8 @@
// Returns the bitmap that is rendered in the middle of the thumb
// transparently over the background bitmap.
SkBitmap* grippy_bitmap() const {
- return scroll_bar_->images_[BitmapScrollBar::THUMB_GRIPPY][BaseButton::BS_NORMAL];
+ return scroll_bar_->images_[BitmapScrollBar::THUMB_GRIPPY]
+ [BaseButton::BS_NORMAL];
}
// Update our state and schedule a repaint when the mouse moves over us.
« no previous file with comments | « chrome/views/bitmap_scroll_bar.h ('k') | chrome/views/chrome_menu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698