OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ash/shell/shell_delegate_impl.h" | 5 #include "ash/shell/shell_delegate_impl.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "ash/caps_lock_delegate_stub.h" | 9 #include "ash/caps_lock_delegate_stub.h" |
10 #include "ash/host/root_window_host_factory.h" | 10 #include "ash/host/root_window_host_factory.h" |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 if (window) | 106 if (window) |
107 ash::wm::ToggleMaximizedWindow(window); | 107 ash::wm::ToggleMaximizedWindow(window); |
108 } | 108 } |
109 | 109 |
110 void ShellDelegateImpl::OpenFileManager(bool as_dialog) { | 110 void ShellDelegateImpl::OpenFileManager(bool as_dialog) { |
111 } | 111 } |
112 | 112 |
113 void ShellDelegateImpl::OpenCrosh() { | 113 void ShellDelegateImpl::OpenCrosh() { |
114 } | 114 } |
115 | 115 |
116 void ShellDelegateImpl::OpenMobileSetup(const std::string& service_path) { | |
117 } | |
118 | |
119 void ShellDelegateImpl::RestoreTab() { | 116 void ShellDelegateImpl::RestoreTab() { |
120 } | 117 } |
121 | 118 |
122 void ShellDelegateImpl::ShowKeyboardOverlay() { | 119 void ShellDelegateImpl::ShowKeyboardOverlay() { |
123 } | 120 } |
124 | 121 |
125 keyboard::KeyboardControllerProxy* | 122 keyboard::KeyboardControllerProxy* |
126 ShellDelegateImpl::CreateKeyboardControllerProxy() { | 123 ShellDelegateImpl::CreateKeyboardControllerProxy() { |
127 return new DummyKeyboardControllerProxy(); | 124 return new DummyKeyboardControllerProxy(); |
128 } | 125 } |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { | 240 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { |
244 return RootWindowHostFactory::Create(); | 241 return RootWindowHostFactory::Create(); |
245 } | 242 } |
246 | 243 |
247 base::string16 ShellDelegateImpl::GetProductName() const { | 244 base::string16 ShellDelegateImpl::GetProductName() const { |
248 return base::string16(); | 245 return base::string16(); |
249 } | 246 } |
250 | 247 |
251 } // namespace shell | 248 } // namespace shell |
252 } // namespace ash | 249 } // namespace ash |
OLD | NEW |