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

Unified Diff: athena/main/athena_launcher.cc

Issue 662763002: Support modal windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: fix leaks Created 6 years, 2 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 | « athena/athena.gyp ('k') | athena/screen/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/main/athena_launcher.cc
diff --git a/athena/main/athena_launcher.cc b/athena/main/athena_launcher.cc
index 2634489e99b74374b55af2ac24e94d18dca1d2c4..28059df2cd959bcbc084f68c675b1cb64b0ce58d 100644
--- a/athena/main/athena_launcher.cc
+++ b/athena/main/athena_launcher.cc
@@ -115,8 +115,8 @@ void StartAthenaEnv(scoped_refptr<base::TaskRunner> blocking_task_runner) {
athena::InputManager::Create()->OnRootWindowCreated(root_window);
athena::ScreenManager::Create(root_window);
- athena::SystemUI::Create(blocking_task_runner);
athena::WindowManager::Create();
+ athena::SystemUI::Create(blocking_task_runner);
athena::AppRegistry::Create();
SetupBackgroundImage();
@@ -166,8 +166,8 @@ void ShutdownAthena() {
session_started = false;
}
athena::AppRegistry::ShutDown();
- athena::WindowManager::Shutdown();
athena::SystemUI::Shutdown();
+ athena::WindowManager::Shutdown();
athena::ScreenManager::Shutdown();
athena::InputManager::Shutdown();
athena::AthenaEnv::Shutdown();
« no previous file with comments | « athena/athena.gyp ('k') | athena/screen/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698