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

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: 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..6a101ba440e40c58dfd41373892b3e2c0c2743cd
--- /dev/null
+++ b/extensions/shell/browser/desktop_controller.h
@@ -0,0 +1,45 @@
+// 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 ShellAppWindow;
+
+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();
+
+ virtual aura::WindowTreeHost* GetHost() = 0;
+
+ // Creates the window that hosts the app.
+ virtual void CreateRootWindow() = 0;
+
+ // Creates a new app window and adds it to the desktop. The desktop maintains
+ // ownership of the window.
+ virtual ShellAppWindow* CreateAppWindow(content::BrowserContext* context) = 0;
+
+ // Closes and destroys the app windows.
+ virtual void CloseAppWindows() = 0;
+};
+
+} // namespace extensinos
+
+#endif // EXTENSIONS_SHELL_BROWSER_DESKTOP_CONTROLLER_H_

Powered by Google App Engine
This is Rietveld 408576698