diff options
author | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-06 03:52:41 +0000 |
---|---|---|
committer | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-06 03:52:41 +0000 |
commit | bfe665c1bf750362d6f82e2ff8134c02df48a364 (patch) | |
tree | ad4d9e016da2c0b7ce01c03b151deb5e2521cf83 /apps/shell_window.h | |
parent | d3c4b753f3d2516d3e0851723df3ba06ef2a496b (diff) | |
download | chromium_src-bfe665c1bf750362d6f82e2ff8134c02df48a364.zip chromium_src-bfe665c1bf750362d6f82e2ff8134c02df48a364.tar.gz chromium_src-bfe665c1bf750362d6f82e2ff8134c02df48a364.tar.bz2 |
Revert 215753 "Move native_app_window code to apps areas"
> Move native_app_window code to apps areas
>
> native_app_window.h -> apps component
> platform specific implementations of this are now in c/b/ui/xxx/apps.
>
> The platform specific implementations should also move to apps/ but
> they would currently bring some unwanted dependencies with them; that
> can happen later.
>
> BUG=159366
>
> Review URL: https://chromiumcodereview.appspot.com/21344002
TBR=benwells@chromium.org
Review URL: https://codereview.chromium.org/22355002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/shell_window.h')
-rw-r--r-- | apps/shell_window.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/shell_window.h b/apps/shell_window.h index c87a7e8..a1e667b 100644 --- a/apps/shell_window.h +++ b/apps/shell_window.h @@ -21,6 +21,7 @@ class GURL; class Profile; +class NativeAppWindow; class SkRegion; namespace content { @@ -41,8 +42,6 @@ class BaseWindow; namespace apps { -class NativeAppWindow; - // Manages the web contents for Shell Windows. The implementation for this // class should create and maintain the WebContents for the window, and handle // any message passing between the web contents and the extension system or @@ -131,9 +130,6 @@ class ShellWindow : public content::NotificationObserver, // General initialization. virtual void InitWebContents(content::WebContents* web_contents) = 0; - virtual NativeAppWindow* CreateNativeAppWindow( - ShellWindow* window, - const CreateParams& params) = 0; // Link handling. virtual content::WebContents* OpenURLFromTab( |