diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 04:37:54 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 04:37:54 +0000 |
commit | e41d0086cc673a9055bbf2bb071c51a141687c22 (patch) | |
tree | f9a45bfe8d6f582c556fb14205c25be8eb949e85 /chrome/browser/ui/browser_window.h | |
parent | ed223af80f326118beb39227876684ce3ceb6257 (diff) | |
download | chromium_src-e41d0086cc673a9055bbf2bb071c51a141687c22.zip chromium_src-e41d0086cc673a9055bbf2bb071c51a141687c22.tar.gz chromium_src-e41d0086cc673a9055bbf2bb071c51a141687c22.tar.bz2 |
components: Create web_modal component.
Notable changes:
* Move WebContentsModalDialog related classes into components/web_modal/
* Use namespace web_modal
* Move the logic for sending the Chrome IPC message out of
WebContentsModalDialogManager, and into ChromeModalDialogManager.
Have Browser and ShellWindow subclass ChromeModalDialogManager,
instead of directly from WebContentsModalDialogManager, to be able
to send the IPC.
* Introduce WebContentsModalDialogManagerDelegate::IsWebContentsVisibile.
This is necessary to remove the dependency on platform_util.
BUG=241278
R=ben@chromium.org, wittman@chromium.org
Review URL: https://codereview.chromium.org/14969012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_window.h')
-rw-r--r-- | chrome/browser/ui/browser_window.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h index ec2521b..23a0ae2 100644 --- a/chrome/browser/ui/browser_window.h +++ b/chrome/browser/ui/browser_window.h @@ -28,7 +28,6 @@ class TemplateURL; #if !defined(OS_MACOSX) class ToolbarView; #endif -class WebContentsModalDialogHost; namespace autofill { class PasswordGenerator; @@ -49,6 +48,10 @@ class Rect; class Size; } +namespace web_modal { +class WebContentsModalDialogHost; +} + //////////////////////////////////////////////////////////////////////////////// // BrowserWindow interface // An interface implemented by the "view" of the Browser window. @@ -326,7 +329,8 @@ class BrowserWindow : public BaseWindow { // Return the WebContentsModalDialogHost for use in positioning web contents // modal dialogs within the browser window. - virtual WebContentsModalDialogHost* GetWebContentsModalDialogHost() = 0; + virtual web_modal::WebContentsModalDialogHost* + GetWebContentsModalDialogHost() = 0; // Invoked when the preferred size of the contents in current tab has been // changed. We might choose to update the window size to accomodate this |