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

Side by Side Diff: ash/test/test_shell_delegate.cc

Issue 10134036: Let Chrome app handle Ash accelerators first if the app is launched as a window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 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 | Annotate | Revision Log
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/test/test_shell_delegate.h" 5 #include "ash/test/test_shell_delegate.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "ash/screenshot_delegate.h" 9 #include "ash/screenshot_delegate.h"
10 #include "ash/shell.h" 10 #include "ash/shell.h"
(...skipping 29 matching lines...) Expand all
40 40
41 void TestShellDelegate::Shutdown() { 41 void TestShellDelegate::Shutdown() {
42 } 42 }
43 43
44 void TestShellDelegate::Exit() { 44 void TestShellDelegate::Exit() {
45 } 45 }
46 46
47 void TestShellDelegate::NewWindow(bool incognito) { 47 void TestShellDelegate::NewWindow(bool incognito) {
48 } 48 }
49 49
50 bool TestShellDelegate::IsBrowserWindow(const aura::Window* window) {
51 return false;
52 }
53
50 void TestShellDelegate::Search() { 54 void TestShellDelegate::Search() {
51 } 55 }
52 56
53 void TestShellDelegate::OpenFileManager() { 57 void TestShellDelegate::OpenFileManager() {
54 } 58 }
55 59
56 void TestShellDelegate::OpenCrosh() { 60 void TestShellDelegate::OpenCrosh() {
57 } 61 }
58 62
59 void TestShellDelegate::OpenMobileSetup() { 63 void TestShellDelegate::OpenMobileSetup() {
(...skipping 18 matching lines...) Expand all
78 SystemTray* tray) { 82 SystemTray* tray) {
79 return NULL; 83 return NULL;
80 } 84 }
81 85
82 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { 86 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() {
83 return NULL; 87 return NULL;
84 } 88 }
85 89
86 } // namespace test 90 } // namespace test
87 } // namespace ash 91 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698