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

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

Issue 10414064: Handle more browser commands in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build of ShellDelegateImpl 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
« no previous file with comments | « ash/test/test_shell_delegate.h ('k') | chrome/browser/sessions/tab_restore_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 27 matching lines...) Expand all
38 bool TestShellDelegate::IsScreenLocked() const { 38 bool TestShellDelegate::IsScreenLocked() const {
39 return locked_; 39 return locked_;
40 } 40 }
41 41
42 void TestShellDelegate::Shutdown() { 42 void TestShellDelegate::Shutdown() {
43 } 43 }
44 44
45 void TestShellDelegate::Exit() { 45 void TestShellDelegate::Exit() {
46 } 46 }
47 47
48 void TestShellDelegate::NewTab() {
49 }
50
48 void TestShellDelegate::NewWindow(bool incognito) { 51 void TestShellDelegate::NewWindow(bool incognito) {
49 } 52 }
50 53
51 void TestShellDelegate::Search() { 54 void TestShellDelegate::Search() {
52 } 55 }
53 56
54 void TestShellDelegate::OpenFileManager() { 57 void TestShellDelegate::OpenFileManager() {
55 } 58 }
56 59
57 void TestShellDelegate::OpenCrosh() { 60 void TestShellDelegate::OpenCrosh() {
58 } 61 }
59 62
60 void TestShellDelegate::OpenMobileSetup() { 63 void TestShellDelegate::OpenMobileSetup() {
61 } 64 }
62 65
66 void TestShellDelegate::RestoreTab() {
67 }
68
63 void TestShellDelegate::ShowKeyboardOverlay() { 69 void TestShellDelegate::ShowKeyboardOverlay() {
64 } 70 }
65 71
72 void TestShellDelegate::ShowTaskManager() {
73 }
74
66 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { 75 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() {
67 return new TestBrowserContext(); 76 return new TestBrowserContext();
68 } 77 }
69 78
70 void TestShellDelegate::ToggleSpokenFeedback() { 79 void TestShellDelegate::ToggleSpokenFeedback() {
71 } 80 }
72 81
73 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { 82 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() {
74 return NULL; 83 return NULL;
75 } 84 }
(...skipping 13 matching lines...) Expand all
89 SystemTray* tray) { 98 SystemTray* tray) {
90 return NULL; 99 return NULL;
91 } 100 }
92 101
93 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { 102 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() {
94 return NULL; 103 return NULL;
95 } 104 }
96 105
97 } // namespace test 106 } // namespace test
98 } // namespace ash 107 } // namespace ash
OLDNEW
« no previous file with comments | « ash/test/test_shell_delegate.h ('k') | chrome/browser/sessions/tab_restore_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698