Chromium Code Reviews| Index: chrome/browser/ui/webui/html_dialog_ui.h |
| diff --git a/chrome/browser/ui/webui/html_dialog_ui.h b/chrome/browser/ui/webui/html_dialog_ui.h |
| index 4399a96e2a3e74051def237cccadfb7dc008bea6..ba28a362add8ca46d257e34aa51ccd03f5188b84 100644 |
| --- a/chrome/browser/ui/webui/html_dialog_ui.h |
| +++ b/chrome/browser/ui/webui/html_dialog_ui.h |
| @@ -11,6 +11,7 @@ |
| #include "base/compiler_specific.h" |
| #include "base/string16.h" |
| +#include "content/public/browser/web_contents_delegate.h" |
| #include "content/public/browser/web_ui_controller.h" |
| #include "googleurl/src/gurl.h" |
| #include "ui/base/ui_base_types.h" |
| @@ -79,6 +80,21 @@ class HtmlDialogUIDelegate { |
| // shown (because you want to handle it yourself). |
| virtual bool HandleContextMenu(const ContextMenuParams& params); |
| + // A callback to allow the delegate to open a new URL inside |source|. |
| + // On return |out_new_contents| should contain the WebContents the URL |
| + // is opened in. Return false to use the default handler. |
| + virtual bool HandleOpenURLFromTab(content::WebContents* source, |
| + const content::OpenURLParams& params, |
| + content::WebContents** out_new_contents); |
| + |
| + // A callback to create a new tab with |new_contents|. Return false to use the |
| + // default handler. |
| + virtual bool HandleAddNewContents(content::WebContents* source, |
|
James Hawkins
2012/01/31 00:23:22
Document params.
sail
2012/01/31 01:03:46
Done.
|
| + content::WebContents* new_contents, |
| + WindowOpenDisposition disposition, |
| + const gfx::Rect& initial_pos, |
| + bool user_gesture); |
| + |
| // Stores the dialog bounds. |
| virtual void StoreDialogSize(const gfx::Size& dialog_size) {} |