| 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 "ash/accessibility_delegate.h" | 7 #include "ash/accessibility_delegate.h" |
| 8 #include "ash/default_accessibility_delegate.h" | 8 #include "ash/default_accessibility_delegate.h" |
| 9 #include "ash/default_user_wallpaper_delegate.h" | 9 #include "ash/default_user_wallpaper_delegate.h" |
| 10 #include "ash/gpu_support_stub.h" | 10 #include "ash/gpu_support_stub.h" |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 ash::ShelfItemDelegate* item_delegate, | 259 ash::ShelfItemDelegate* item_delegate, |
| 260 ash::ShelfItem* item) { | 260 ash::ShelfItem* item) { |
| 261 return new ContextMenu(root); | 261 return new ContextMenu(root); |
| 262 } | 262 } |
| 263 | 263 |
| 264 GPUSupport* ShellDelegateImpl::CreateGPUSupport() { | 264 GPUSupport* ShellDelegateImpl::CreateGPUSupport() { |
| 265 // Real GPU support depends on src/content, so just use a stub. | 265 // Real GPU support depends on src/content, so just use a stub. |
| 266 return new GPUSupportStub; | 266 return new GPUSupportStub; |
| 267 } | 267 } |
| 268 | 268 |
| 269 UserMetricsRecorderProxy* ShellDelegateImpl::CreateUserMetricsRecorderProxy() { |
| 270 return nullptr; |
| 271 } |
| 272 |
| 269 base::string16 ShellDelegateImpl::GetProductName() const { | 273 base::string16 ShellDelegateImpl::GetProductName() const { |
| 270 return base::string16(); | 274 return base::string16(); |
| 271 } | 275 } |
| 272 | 276 |
| 273 } // namespace shell | 277 } // namespace shell |
| 274 } // namespace ash | 278 } // namespace ash |
| OLD | NEW |