| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 138 |
| 139 void TestShellDelegate::HandleMediaNextTrack() { | 139 void TestShellDelegate::HandleMediaNextTrack() { |
| 140 } | 140 } |
| 141 | 141 |
| 142 void TestShellDelegate::HandleMediaPlayPause() { | 142 void TestShellDelegate::HandleMediaPlayPause() { |
| 143 } | 143 } |
| 144 | 144 |
| 145 void TestShellDelegate::HandleMediaPrevTrack() { | 145 void TestShellDelegate::HandleMediaPrevTrack() { |
| 146 } | 146 } |
| 147 | 147 |
| 148 string16 TestShellDelegate::GetTimeRemainingString(base::TimeDelta delta) { | |
| 149 return string16(); | |
| 150 } | |
| 151 | |
| 152 void TestShellDelegate::SaveScreenMagnifierScale(double scale) { | 148 void TestShellDelegate::SaveScreenMagnifierScale(double scale) { |
| 153 } | 149 } |
| 154 | 150 |
| 155 ui::MenuModel* TestShellDelegate::CreateContextMenu(aura::RootWindow* root) { | 151 ui::MenuModel* TestShellDelegate::CreateContextMenu(aura::RootWindow* root) { |
| 156 return NULL; | 152 return NULL; |
| 157 } | 153 } |
| 158 | 154 |
| 159 double TestShellDelegate::GetSavedScreenMagnifierScale() { | 155 double TestShellDelegate::GetSavedScreenMagnifierScale() { |
| 160 return std::numeric_limits<double>::min(); | 156 return std::numeric_limits<double>::min(); |
| 161 } | 157 } |
| 162 | 158 |
| 163 } // namespace test | 159 } // namespace test |
| 164 } // namespace ash | 160 } // namespace ash |
| OLD | NEW |