| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "extensions/shell/browser/shell_apps_client.h" | |
| 6 | |
| 7 #include "extensions/browser/app_window/app_window.h" | |
| 8 #include "extensions/shell/browser/desktop_controller.h" | |
| 9 #include "extensions/shell/browser/shell_native_app_window.h" | |
| 10 | |
| 11 namespace extensions { | |
| 12 | |
| 13 ShellAppsClient::ShellAppsClient() { | |
| 14 } | |
| 15 | |
| 16 ShellAppsClient::~ShellAppsClient() { | |
| 17 } | |
| 18 | |
| 19 std::vector<content::BrowserContext*> | |
| 20 ShellAppsClient::GetLoadedBrowserContexts() { | |
| 21 NOTIMPLEMENTED(); | |
| 22 return std::vector<content::BrowserContext*>(); | |
| 23 } | |
| 24 | |
| 25 AppWindow* ShellAppsClient::CreateAppWindow(content::BrowserContext* context, | |
| 26 const Extension* extension) { | |
| 27 return DesktopController::instance()->CreateAppWindow(context, extension); | |
| 28 } | |
| 29 | |
| 30 NativeAppWindow* ShellAppsClient::CreateNativeAppWindow( | |
| 31 AppWindow* window, | |
| 32 const AppWindow::CreateParams& params) { | |
| 33 ShellNativeAppWindow* native_app_window = | |
| 34 new ShellNativeAppWindow(window, params); | |
| 35 DesktopController::instance()->AddAppWindow( | |
| 36 native_app_window->GetNativeWindow()); | |
| 37 return native_app_window; | |
| 38 } | |
| 39 | |
| 40 void ShellAppsClient::IncrementKeepAliveCount() { | |
| 41 NOTIMPLEMENTED(); | |
| 42 } | |
| 43 | |
| 44 void ShellAppsClient::DecrementKeepAliveCount() { | |
| 45 NOTIMPLEMENTED(); | |
| 46 } | |
| 47 | |
| 48 void ShellAppsClient::OpenDevToolsWindow(content::WebContents* web_contents, | |
| 49 const base::Closure& callback) { | |
| 50 NOTIMPLEMENTED(); | |
| 51 } | |
| 52 | |
| 53 bool ShellAppsClient::IsCurrentChannelOlderThanDev() { | |
| 54 return false; | |
| 55 } | |
| 56 | |
| 57 } // namespace extensions | |
| OLD | NEW |