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

Unified Diff: extensions/shell/browser/default_shell_browser_main_delegate.cc

Issue 480353006: Separate athena's startup process from AppShell's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reformat 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/default_shell_browser_main_delegate.cc
diff --git a/extensions/shell/browser/default_shell_browser_main_delegate.cc b/extensions/shell/browser/default_shell_browser_main_delegate.cc
index 5fb2cf101607b49f735ae466e595108fea1f726b..51b936b96f1e23327297795b6e880ccb4d65ef60 100644
--- a/extensions/shell/browser/default_shell_browser_main_delegate.cc
+++ b/extensions/shell/browser/default_shell_browser_main_delegate.cc
@@ -7,7 +7,6 @@
#include "base/command_line.h"
#include "base/file_util.h"
#include "base/files/file_path.h"
-#include "extensions/shell/browser/default_shell_app_window_controller.h"
#include "extensions/shell/browser/shell_desktop_controller.h"
#include "extensions/shell/browser/shell_extension_system.h"
#include "extensions/shell/common/switches.h"
@@ -42,11 +41,8 @@ void DefaultShellBrowserMainDelegate::Start(
void DefaultShellBrowserMainDelegate::Shutdown() {
}
-ShellDesktopController*
-DefaultShellBrowserMainDelegate::CreateDesktopController() {
- ShellDesktopController* desktop = new ShellDesktopController();
- desktop->SetAppWindowController(new DefaultShellAppWindowController(desktop));
- return desktop;
+DesktopController* DefaultShellBrowserMainDelegate::CreateDesktopController() {
+ return new ShellDesktopController();
}
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698