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

Unified Diff: extensions/shell/browser/desktop_controller.h

Issue 480353006: Separate athena's startup process from AppShell's (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
Index: extensions/shell/browser/desktop_controller.h
diff --git a/extensions/shell/browser/desktop_controller.h b/extensions/shell/browser/desktop_controller.h
new file mode 100644
index 0000000000000000000000000000000000000000..950320c646c55ce38c8f8f50262610469f369f7b
--- /dev/null
+++ b/extensions/shell/browser/desktop_controller.h
@@ -0,0 +1,49 @@
+// 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 EXTENSIONS_SHELL_BROWSER_DESKTOP_CONTROLLER_H_
+#define EXTENSIONS_SHELL_BROWSER_DESKTOP_CONTROLLER_H_
+
+namespace aura {
+class WindowTreeHost;
+}
+
+namespace content {
+class BrowserContext;
+}
+
+namespace extensions {
+class Extension;
+class ShellAppWindow;
+
+// DesktopController is an interface to construct the window environment in
+// extensions shell. ShellDesktopController provides a default implementation
+// for
+// app_shell, and embedder (such as athena) can provide its own.
+class DesktopController {
+ public:
+ DesktopController();
+ virtual ~DesktopController();
+
+ // Returns the single instance of the desktop. (Stateless functions like
+ // ShellAppWindowCreateFunction need to be able to access the desktop, so
+ // we need a singleton somewhere).
+ static DesktopController* instance();
+
+ // Returns the WindowTreeHost created by this DesktopController.
+ virtual aura::WindowTreeHost* GetHost() = 0;
+
+ // Creates a new app window and adds it to the desktop. The desktop maintains
+ // ownership of the window. The window must be closed before |extension| is
+ // destroyed.
+ virtual ShellAppWindow* CreateAppWindow(content::BrowserContext* context,
+ const Extension* extension) = 0;
+
+ // Closes and destroys the app windows.
+ virtual void CloseAppWindows() = 0;
+};
+
+} // namespace extensinos
+
+#endif // EXTENSIONS_SHELL_BROWSER_DESKTOP_CONTROLLER_H_
« no previous file with comments | « extensions/shell/browser/default_shell_browser_main_delegate.cc ('k') | extensions/shell/browser/desktop_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698