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

Unified Diff: apps/custom_launcher_page_contents.h

Issue 486153002: Move AppWindow related classes to extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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/browser_context_keyed_service_factories.cc ('k') | apps/custom_launcher_page_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/custom_launcher_page_contents.h
diff --git a/apps/custom_launcher_page_contents.h b/apps/custom_launcher_page_contents.h
index 38e1cda56f283e077c2f634eee17d1380834083e..36e7f79f7114ec6d143c70efae64303b868dabf2 100644
--- a/apps/custom_launcher_page_contents.h
+++ b/apps/custom_launcher_page_contents.h
@@ -16,10 +16,12 @@ namespace content {
class BrowserContext;
}
-namespace apps {
-
+namespace extensions {
class AppDelegate;
class AppWebContentsHelper;
+}
+
+namespace apps {
// Manages the web contents for extension-hosted launcher pages. The
// implementation for this class should create and maintain the WebContents for
@@ -30,7 +32,7 @@ class CustomLauncherPageContents
public content::WebContentsObserver,
public extensions::ExtensionFunctionDispatcher::Delegate {
public:
- CustomLauncherPageContents(scoped_ptr<AppDelegate> app_delegate,
+ CustomLauncherPageContents(scoped_ptr<extensions::AppDelegate> app_delegate,
const std::string& extension_id);
virtual ~CustomLauncherPageContents();
@@ -84,8 +86,8 @@ class CustomLauncherPageContents
scoped_ptr<content::WebContents> web_contents_;
scoped_ptr<extensions::ExtensionFunctionDispatcher>
extension_function_dispatcher_;
- scoped_ptr<AppDelegate> app_delegate_;
- scoped_ptr<AppWebContentsHelper> helper_;
+ scoped_ptr<extensions::AppDelegate> app_delegate_;
+ scoped_ptr<extensions::AppWebContentsHelper> helper_;
std::string extension_id_;
« no previous file with comments | « apps/browser_context_keyed_service_factories.cc ('k') | apps/custom_launcher_page_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698