| 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/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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |