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