| Index: athena/main/athena_main.cc
|
| diff --git a/athena/main/athena_main.cc b/athena/main/athena_main.cc
|
| index 99f5fa0ae256098adc0cb3f90e6b386e16ac2ce7..b76e14e15b31f5ef4da2b2195bea27d7a301432a 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 "content/public/app/content_main.h"
|
| @@ -21,7 +22,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));
|
| CreateTestPages(context);
|
| }
|
|
|
|
|