| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 } | 253 } |
| 254 | 254 |
| 255 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { | 255 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { |
| 256 return RootWindowHostFactory::Create(); | 256 return RootWindowHostFactory::Create(); |
| 257 } | 257 } |
| 258 | 258 |
| 259 base::string16 ShellDelegateImpl::GetProductName() const { | 259 base::string16 ShellDelegateImpl::GetProductName() const { |
| 260 return base::string16(); | 260 return base::string16(); |
| 261 } | 261 } |
| 262 | 262 |
| 263 bool ShellDelegateImpl::IsTouchHudProjectionEnabled() const { |
| 264 return false; |
| 265 } |
| 266 |
| 267 void ShellDelegateImpl::ToggleTouchHudProjection() { |
| 268 } |
| 269 |
| 263 } // namespace shell | 270 } // namespace shell |
| 264 } // namespace ash | 271 } // namespace ash |
| OLD | NEW |