Chromium Code Reviews

Unified Diff: ui/message_center/views/proportional_image_view.h

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More compile fix for ToT Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « ui/message_center/views/padded_button.cc ('k') | ui/message_center/views/proportional_image_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/views/proportional_image_view.h
diff --git a/ui/message_center/views/proportional_image_view.h b/ui/message_center/views/proportional_image_view.h
index 5aa2638543294d319d2bc3edfa73bd9d94f3d12d..7c1be9243c23549e50946501639ecab2ab3bda76 100644
--- a/ui/message_center/views/proportional_image_view.h
+++ b/ui/message_center/views/proportional_image_view.h
@@ -17,8 +17,8 @@ class ProportionalImageView : public views::View {
virtual ~ProportionalImageView();
// Overridden from views::View:
- virtual gfx::Size GetPreferredSize() OVERRIDE;
- virtual int GetHeightForWidth(int width) OVERRIDE;
+ virtual gfx::Size GetPreferredSize() const OVERRIDE;
+ virtual int GetHeightForWidth(int width) const OVERRIDE;
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
private:
« no previous file with comments | « ui/message_center/views/padded_button.cc ('k') | ui/message_center/views/proportional_image_view.cc » ('j') | no next file with comments »

Powered by Google App Engine