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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 void TestShellDelegate::HandleMediaPlayPause() { | 130 void TestShellDelegate::HandleMediaPlayPause() { |
131 } | 131 } |
132 | 132 |
133 void TestShellDelegate::HandleMediaPrevTrack() { | 133 void TestShellDelegate::HandleMediaPrevTrack() { |
134 } | 134 } |
135 | 135 |
136 string16 TestShellDelegate::GetTimeRemainingString(base::TimeDelta delta) { | 136 string16 TestShellDelegate::GetTimeRemainingString(base::TimeDelta delta) { |
137 return string16(); | 137 return string16(); |
138 } | 138 } |
139 | 139 |
| 140 void TestShellDelegate::ToggleFullscreenMode() { |
| 141 } |
| 142 |
140 } // namespace test | 143 } // namespace test |
141 } // namespace ash | 144 } // namespace ash |
OLD | NEW |