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/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { | 111 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { |
112 return NULL; | 112 return NULL; |
113 } | 113 } |
114 | 114 |
115 void TestShellDelegate::OpenFeedbackPage() { | 115 void TestShellDelegate::OpenFeedbackPage() { |
116 } | 116 } |
117 | 117 |
118 void TestShellDelegate::RecordUserMetricsAction(UserMetricsAction action) { | 118 void TestShellDelegate::RecordUserMetricsAction(UserMetricsAction action) { |
119 } | 119 } |
120 | 120 |
| 121 void TestShellDelegate::HandleMediaNextTrack() { |
| 122 } |
| 123 |
| 124 void TestShellDelegate::HandleMediaPlayPause() { |
| 125 } |
| 126 |
| 127 void TestShellDelegate::HandleMediaPrevTrack() { |
| 128 } |
| 129 |
121 } // namespace test | 130 } // namespace test |
122 } // namespace ash | 131 } // namespace ash |
OLD | NEW |