| Index: athena/main/athena_main.cc
|
| diff --git a/athena/main/athena_main.cc b/athena/main/athena_main.cc
|
| index 90f0343515e026f1b3fe490ba9ac4055310ba200..7675670cb4685b7b8cf4e455790eb938f7bc7868 100644
|
| --- a/athena/main/athena_main.cc
|
| +++ b/athena/main/athena_main.cc
|
| @@ -6,6 +6,7 @@
|
| #include "apps/shell/browser/shell_browser_main_delegate.h"
|
| #include "apps/shell/browser/shell_desktop_controller.h"
|
| #include "athena/content/public/content_activity_factory.h"
|
| +#include "athena/content/public/content_app_model_builder.h"
|
| #include "athena/main/athena_launcher.h"
|
| #include "athena/main/placeholder.h"
|
| #include "athena/main/placeholder_content.h"
|
| @@ -22,7 +23,8 @@ class AthenaBrowserMainDelegate : public apps::ShellBrowserMainDelegate {
|
| virtual void Start(content::BrowserContext* context) OVERRIDE {
|
| athena::StartAthena(
|
| apps::ShellDesktopController::instance()->host()->window(),
|
| - new athena::ContentActivityFactory());
|
| + new athena::ContentActivityFactory(),
|
| + new athena::ContentAppModelBuilder(context));
|
| CreateTestWindows();
|
| CreateTestPages(context);
|
| }
|
|
|