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

Unified Diff: athena/main/athena_main.cc

Issue 301593004: Athena unittests framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps Created 6 years, 7 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: athena/main/athena_main.cc
diff --git a/athena/main/athena_main.cc b/athena/main/athena_main.cc
index 8c6e7aba36b2683b498e6639b33d4acc81cf5c66..6ee8ee4a8c748ebbd75089187239ee6da3f413a1 100644
--- a/athena/main/athena_main.cc
+++ b/athena/main/athena_main.cc
@@ -5,11 +5,8 @@
#include "apps/shell/app/shell_main_delegate.h"
#include "apps/shell/browser/shell_browser_main_delegate.h"
#include "apps/shell/browser/shell_desktop_controller.h"
-#include "athena/home/public/home_card.h"
+#include "athena/main/athena_launcher.h"
#include "athena/main/placeholder.h"
-#include "athena/screen/public/screen_manager.h"
-#include "athena/wm/public/window_manager.h"
-#include "base/memory/scoped_ptr.h"
#include "content/public/app/content_main.h"
#include "ui/aura/window_tree_host.h"
#include "ui/wm/core/visibility_controller.h"
@@ -21,28 +18,13 @@ class AthenaBrowserMainDelegate : public apps::ShellBrowserMainDelegate {
// apps::ShellBrowserMainDelegate:
virtual void Start(content::BrowserContext* context) OVERRIDE {
- aura::Window* root_window =
- apps::ShellDesktopController::instance()->GetWindowTreeHost()->window();
- visibility_controller_.reset(new ::wm::VisibilityController);
- aura::client::SetVisibilityClient(root_window,
- visibility_controller_.get());
-
- athena::ScreenManager::Create(root_window);
- athena::WindowManager::Create();
- athena::HomeCard::Create();
-
- SetupBackgroundImage();
+ athena::StartAthena(apps::ShellDesktopController::instance()
+ ->GetWindowTreeHost()
+ ->window());
CreateTestWindows();
}
- virtual void Shutdown() OVERRIDE {
- athena::HomeCard::Shutdown();
- athena::WindowManager::Shutdown();
- athena::ScreenManager::Shutdown();
- visibility_controller_.reset();
- }
-
- scoped_ptr< ::wm::VisibilityController> visibility_controller_;
+ virtual void Shutdown() OVERRIDE { athena::ShutdownAthena(); }
private:
DISALLOW_COPY_AND_ASSIGN(AthenaBrowserMainDelegate);

Powered by Google App Engine
This is Rietveld 408576698