Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: ash/shell/shell_delegate_impl.cc

Issue 1124153007: Added the Ash.Tab.TimeBetweenSwitchToExistingTabUserActions histogram to track time between tab swit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the branch that the diff was based on. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698