Chromium Code Reviews| Index: chrome/browser/ui/webui/html_dialog_ui.cc |
| diff --git a/chrome/browser/ui/webui/html_dialog_ui.cc b/chrome/browser/ui/webui/html_dialog_ui.cc |
| index 55c35e289c3680e880f39262705720e5f7281b15..a47207b3edd8e20ff1e0d69cd46814a66db2a8bf 100644 |
| --- a/chrome/browser/ui/webui/html_dialog_ui.cc |
| +++ b/chrome/browser/ui/webui/html_dialog_ui.cc |
| @@ -103,6 +103,14 @@ ExternalHtmlDialogUI::ExternalHtmlDialogUI(content::WebUI* web_ui) |
| ExternalHtmlDialogUI::~ExternalHtmlDialogUI() { |
| } |
| +void HtmlDialogUIDelegate::GetMinimumDialogSize(gfx::Size* size) const { |
| + GetDialogSize(size); |
| +} |
| + |
| +std::string HtmlDialogUIDelegate::GetDialogName() const { |
|
James Hawkins
2012/03/14 17:39:25
Ordering of the methods needs to match the header.
yoshiki
2012/03/15 08:35:07
Done.
|
| + return std::string(); |
| +} |
| + |
| bool HtmlDialogUIDelegate::HandleContextMenu( |
| const content::ContextMenuParams& params) { |
| return false; |