Index: athena/main/athena_launcher.cc |
diff --git a/athena/main/athena_launcher.cc b/athena/main/athena_launcher.cc |
index fdfbfe9f0de27b0c497ad5f84de6d7b57ec2e593..efedf12af7a12dca75914cd43455ce629d06f019 100644 |
--- a/athena/main/athena_launcher.cc |
+++ b/athena/main/athena_launcher.cc |
@@ -6,6 +6,7 @@ |
#include "athena/activity/public/activity_factory.h" |
#include "athena/activity/public/activity_manager.h" |
+#include "athena/content/public/app_registry.h" |
#include "athena/home/public/home_card.h" |
#include "athena/input/public/input_manager.h" |
#include "athena/main/placeholder.h" |
@@ -75,6 +76,7 @@ void StartAthena(aura::Window* root_window, |
content::BrowserThread::FILE)); |
athena::InputManager::Create()->OnRootWindowCreated(root_window); |
athena::ScreenManager::Create(root_window); |
+ athena::AppRegistry::Create(); |
athena::WindowManager::Create(); |
athena::HomeCard::Create(app_model_builder); |
athena::ActivityManager::Create(); |
@@ -87,6 +89,7 @@ void ShutdownAthena() { |
athena::ActivityManager::Shutdown(); |
athena::HomeCard::Shutdown(); |
athena::WindowManager::Shutdown(); |
+ athena::AppRegistry::ShutDown(); |
athena::ScreenManager::Shutdown(); |
athena::InputManager::Shutdown(); |
athena::SystemUI::Shutdown(); |