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

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

Issue 11082002: Remove TOGGLE_MAXIMIZED_* from Ash reserved actions list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix AcceleratorControllerTest.WindowSnap Created 8 years, 2 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/caps_lock_delegate_stub.h" 9 #include "ash/caps_lock_delegate_stub.h"
10 #include "ash/shell.h" 10 #include "ash/shell.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 void TestShellDelegate::Exit() { 54 void TestShellDelegate::Exit() {
55 } 55 }
56 56
57 void TestShellDelegate::NewTab() { 57 void TestShellDelegate::NewTab() {
58 } 58 }
59 59
60 void TestShellDelegate::NewWindow(bool incognito) { 60 void TestShellDelegate::NewWindow(bool incognito) {
61 } 61 }
62 62
63 void TestShellDelegate::ToggleMaximized() {
64 }
65
63 void TestShellDelegate::OpenFileManager(bool as_dialog) { 66 void TestShellDelegate::OpenFileManager(bool as_dialog) {
64 } 67 }
65 68
66 void TestShellDelegate::OpenCrosh() { 69 void TestShellDelegate::OpenCrosh() {
67 } 70 }
68 71
69 void TestShellDelegate::OpenMobileSetup(const std::string& service_path) { 72 void TestShellDelegate::OpenMobileSetup(const std::string& service_path) {
70 } 73 }
71 74
72 void TestShellDelegate::RestoreTab() { 75 void TestShellDelegate::RestoreTab() {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 145
143 void TestShellDelegate::SaveScreenMagnifierScale(double scale) { 146 void TestShellDelegate::SaveScreenMagnifierScale(double scale) {
144 } 147 }
145 148
146 double TestShellDelegate::GetSavedScreenMagnifierScale() { 149 double TestShellDelegate::GetSavedScreenMagnifierScale() {
147 return std::numeric_limits<double>::min(); 150 return std::numeric_limits<double>::min();
148 } 151 }
149 152
150 } // namespace test 153 } // namespace test
151 } // namespace ash 154 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698