Index: athena/extensions/shell/athena_shell_apps_client.cc |
diff --git a/athena/extensions/shell/athena_shell_apps_client.cc b/athena/extensions/shell/athena_shell_apps_client.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cedc002a0d1965b14c2e56c088453c947169492c |
--- /dev/null |
+++ b/athena/extensions/shell/athena_shell_apps_client.cc |
@@ -0,0 +1,43 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "athena/extensions/shell/athena_shell_apps_client.h" |
+ |
+#include "athena/extensions/shell/athena_shell_app_delegate.h" |
+#include "extensions/browser/app_window/app_window.h" |
+ |
+namespace athena { |
+ |
+AthenaShellAppsClient::AthenaShellAppsClient(content::BrowserContext* context) |
+ : context_(context) { |
+ DCHECK(context_); |
+} |
+ |
+AthenaShellAppsClient::~AthenaShellAppsClient() { |
+} |
+ |
+std::vector<content::BrowserContext*> |
+AthenaShellAppsClient::GetLoadedBrowserContexts() { |
+ std::vector<content::BrowserContext*> contexts(1, context_); |
+ return contexts; |
+} |
+ |
+extensions::AppWindow* AthenaShellAppsClient::CreateAppWindow( |
+ content::BrowserContext* context, |
+ const extensions::Extension* extension) { |
+ return new extensions::AppWindow( |
+ context, new AthenaShellAppDelegate, extension); |
+} |
+ |
+void AthenaShellAppsClient::OpenDevToolsWindow( |
+ content::WebContents* web_contents, |
+ const base::Closure& callback) { |
+ // TODO(oshima): Figure out what to do. |
+} |
+ |
+bool AthenaShellAppsClient::IsCurrentChannelOlderThanDev() { |
+ return false; |
+} |
+ |
+} // namespace athena |