Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(675)

Side by Side Diff: ash/test/test_shell_delegate.cc

Issue 10823439: Ash: Support "Next Song", "Previous Song", "Play/Pause" Multi Media buttons (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698