| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { | 117 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { |
| 118 return NULL; | 118 return NULL; |
| 119 } | 119 } |
| 120 | 120 |
| 121 void TestShellDelegate::OpenFeedbackPage() { | 121 void TestShellDelegate::OpenFeedbackPage() { |
| 122 } | 122 } |
| 123 | 123 |
| 124 void TestShellDelegate::RecordUserMetricsAction(UserMetricsAction action) { | 124 void TestShellDelegate::RecordUserMetricsAction(UserMetricsAction action) { |
| 125 } | 125 } |
| 126 | 126 |
| 127 void TestShellDelegate::RemoveFullScreenExitBubble() { |
| 128 } |
| 129 |
| 127 void TestShellDelegate::HandleMediaNextTrack() { | 130 void TestShellDelegate::HandleMediaNextTrack() { |
| 128 } | 131 } |
| 129 | 132 |
| 130 void TestShellDelegate::HandleMediaPlayPause() { | 133 void TestShellDelegate::HandleMediaPlayPause() { |
| 131 } | 134 } |
| 132 | 135 |
| 133 void TestShellDelegate::HandleMediaPrevTrack() { | 136 void TestShellDelegate::HandleMediaPrevTrack() { |
| 134 } | 137 } |
| 135 | 138 |
| 136 string16 TestShellDelegate::GetTimeRemainingString(base::TimeDelta delta) { | 139 string16 TestShellDelegate::GetTimeRemainingString(base::TimeDelta delta) { |
| 137 return string16(); | 140 return string16(); |
| 138 } | 141 } |
| 139 | 142 |
| 140 } // namespace test | 143 } // namespace test |
| 141 } // namespace ash | 144 } // namespace ash |
| OLD | NEW |