| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 void ShellDelegateImpl::RestoreTab() { | 116 void ShellDelegateImpl::RestoreTab() { |
| 117 } | 117 } |
| 118 | 118 |
| 119 bool ShellDelegateImpl::RotatePaneFocus(Shell::Direction direction) { | 119 bool ShellDelegateImpl::RotatePaneFocus(Shell::Direction direction) { |
| 120 return true; | 120 return true; |
| 121 } | 121 } |
| 122 | 122 |
| 123 void ShellDelegateImpl::ShowKeyboardOverlay() { | 123 void ShellDelegateImpl::ShowKeyboardOverlay() { |
| 124 } | 124 } |
| 125 | 125 |
| 126 keyboard::KeyboardControllerProxy* |
| 127 ShellDelegateImpl::CreateKeyboardControllerProxy() { |
| 128 return NULL; |
| 129 } |
| 130 |
| 126 void ShellDelegateImpl::ShowTaskManager() { | 131 void ShellDelegateImpl::ShowTaskManager() { |
| 127 } | 132 } |
| 128 | 133 |
| 129 content::BrowserContext* ShellDelegateImpl::GetCurrentBrowserContext() { | 134 content::BrowserContext* ShellDelegateImpl::GetCurrentBrowserContext() { |
| 130 return Shell::GetInstance()->browser_context(); | 135 return Shell::GetInstance()->browser_context(); |
| 131 } | 136 } |
| 132 | 137 |
| 133 void ShellDelegateImpl::ToggleSpokenFeedback( | 138 void ShellDelegateImpl::ToggleSpokenFeedback( |
| 134 AccessibilityNotificationVisibility notify) { | 139 AccessibilityNotificationVisibility notify) { |
| 135 spoken_feedback_enabled_ = !spoken_feedback_enabled_; | 140 spoken_feedback_enabled_ = !spoken_feedback_enabled_; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { | 235 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { |
| 231 return RootWindowHostFactory::Create(); | 236 return RootWindowHostFactory::Create(); |
| 232 } | 237 } |
| 233 | 238 |
| 234 string16 ShellDelegateImpl::GetProductName() const { | 239 string16 ShellDelegateImpl::GetProductName() const { |
| 235 return string16(); | 240 return string16(); |
| 236 } | 241 } |
| 237 | 242 |
| 238 } // namespace shell | 243 } // namespace shell |
| 239 } // namespace ash | 244 } // namespace ash |
| OLD | NEW |