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

Unified Diff: components/infobars/core/infobar_delegate.cc

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add two more const for Windows. 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: components/infobars/core/infobar_delegate.cc
diff --git a/components/infobars/core/infobar_delegate.cc b/components/infobars/core/infobar_delegate.cc
index d3f5165c8bfcff2b22524024f5beab379e6d8a63..43a7c75faa41d7df83c019ccab60928b334fb4ba 100644
--- a/components/infobars/core/infobar_delegate.cc
+++ b/components/infobars/core/infobar_delegate.cc
@@ -56,6 +56,11 @@ ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() {
return NULL;
}
+const ExtensionInfoBarDelegate*
+InfoBarDelegate::AsExtensionInfoBarDelegate() const {
+ return NULL;
+}
+
InsecureContentInfoBarDelegate*
InfoBarDelegate::AsInsecureContentInfoBarDelegate() {
return NULL;

Powered by Google App Engine
This is Rietveld 408576698