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

Unified Diff: chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc

Issue 754953002: Enable AutoResize for Constrained Web Dialogs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/ui/webui/constrained_web_dialog_delegate_base.cc
diff --git a/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc b/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc
index 146e32cb83c174321c37b0bb831bfc54599cdb0e..481c2177d195f08df041737cbc14170ab8b266cd 100644
--- a/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc
+++ b/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc
@@ -99,3 +99,18 @@ void ConstrainedWebDialogDelegateBase::HandleKeyboardEvent(
content::WebContents* source,
const NativeWebKeyboardEvent& event) {
}
+
+gfx::Size ConstrainedWebDialogDelegateBase::GetMinimumSize() const {
+ NOTREACHED();
+ return gfx::Size();
+}
+
+gfx::Size ConstrainedWebDialogDelegateBase::GetMaximumSize() const {
+ NOTREACHED();
+ return gfx::Size();
+}
+
+gfx::Size ConstrainedWebDialogDelegateBase::GetPreferredSize() const {
+ NOTREACHED();
+ return gfx::Size();
+}
« no previous file with comments | « chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h ('k') | chrome/browser/ui/webui/constrained_web_dialog_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698