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

Unified Diff: chrome/browser/chromeos/profiles/multiprofiles_intro_dialog.cc

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/profiles/multiprofiles_intro_dialog.cc
diff --git a/chrome/browser/chromeos/profiles/multiprofiles_intro_dialog.cc b/chrome/browser/chromeos/profiles/multiprofiles_intro_dialog.cc
index c5b0261d9c03f168b9c7ddca893eca9ca54b0391..0f6cb923f09c392b60aad2e108fb4159223a7a13 100644
--- a/chrome/browser/chromeos/profiles/multiprofiles_intro_dialog.cc
+++ b/chrome/browser/chromeos/profiles/multiprofiles_intro_dialog.cc
@@ -43,7 +43,7 @@ class MultiprofilesIntroView : public views::DialogDelegateView {
virtual ui::ModalType GetModalType() const OVERRIDE;
// views::View overrides.
- virtual gfx::Size GetPreferredSize() OVERRIDE;
+ virtual gfx::Size GetPreferredSize() const OVERRIDE;
private:
void InitDialog();
@@ -87,7 +87,7 @@ ui::ModalType MultiprofilesIntroView::GetModalType() const {
return ui::MODAL_TYPE_SYSTEM;
}
-gfx::Size MultiprofilesIntroView::GetPreferredSize() {
+gfx::Size MultiprofilesIntroView::GetPreferredSize() const {
return gfx::Size(kDefaultWidth, kDefaultHeight);
}

Powered by Google App Engine
This is Rietveld 408576698