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

Unified Diff: apps/shell/browser/shell_app_window.h

Issue 412713002: Move apps/shell to extensions/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 40% Created 6 years, 5 months 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
« no previous file with comments | « apps/shell/browser/shell_app_sorting.cc ('k') | apps/shell/browser/shell_app_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/shell/browser/shell_app_window.h
diff --git a/apps/shell/browser/shell_app_window.h b/apps/shell/browser/shell_app_window.h
deleted file mode 100644
index 3df66adbd045ec8312739a8cf027d245d6aadbf4..0000000000000000000000000000000000000000
--- a/apps/shell/browser/shell_app_window.h
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef APPS_SHELL_BROWSER_SHELL_APP_WINDOW_H_
-#define APPS_SHELL_BROWSER_SHELL_APP_WINDOW_H_
-
-#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
-#include "content/public/browser/web_contents_observer.h"
-#include "extensions/browser/extension_function_dispatcher.h"
-
-struct ExtensionHostMsg_Request_Params;
-class GURL;
-
-namespace aura {
-class Window;
-}
-
-namespace content {
-class BrowserContext;
-class WebContents;
-}
-
-namespace extensions {
-class ExtensionFunctionDispatcher;
-}
-
-namespace gfx {
-class Size;
-}
-
-namespace apps {
-
-// A simplified app window created by chrome.app.window.create(). Manages the
-// primary web contents for the app.
-class ShellAppWindow
- : public content::WebContentsObserver,
- public extensions::ExtensionFunctionDispatcher::Delegate {
- public:
- ShellAppWindow();
- virtual ~ShellAppWindow();
-
- // Creates the web contents and attaches extension-specific helpers.
- // Passing a valid |initial_size| to avoid a web contents resize.
- void Init(content::BrowserContext* context, gfx::Size initial_size);
-
- // Starts loading |url| which must be an extension URL.
- void LoadURL(const GURL& url);
-
- // Returns the window hosting the web contents.
- aura::Window* GetNativeWindow();
-
- // Returns the routing ID of the render view host of |web_contents_|.
- int GetRenderViewRoutingID();
-
- // content::WebContentsObserver implementation
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
-
- // extensions::ExtensionFunctionDispatcher::Delegate implementation
- virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
-
- private:
- // IPC handler.
- void OnRequest(const ExtensionHostMsg_Request_Params& params);
-
- scoped_ptr<content::WebContents> web_contents_;
- scoped_ptr<extensions::ExtensionFunctionDispatcher>
- extension_function_dispatcher_;
-
- DISALLOW_COPY_AND_ASSIGN(ShellAppWindow);
-};
-
-} // namespace apps
-
-#endif // APPS_SHELL_BROWSER_SHELL_APP_WINDOW_H_
« no previous file with comments | « apps/shell/browser/shell_app_sorting.cc ('k') | apps/shell/browser/shell_app_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698