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

Side by Side Diff: chrome/browser/media/router/media_controller_impl.cc

Issue 949293004: Add media router common classes and unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chunkier CL Created 5 years, 9 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/media/router/media_controller_impl.h"
6
7 namespace media_router {
8
9 MediaControllerImpl::MediaControllerImpl(const MediaRouteId& media_route_id)
10 : MediaController(media_route_id) {}
11
12 MediaControllerImpl::~MediaControllerImpl() {
13 }
14
15 // TODO(imcheng): Implement the following.
16 void MediaControllerImpl::Pause() {
17 }
18
19 void MediaControllerImpl::Resume() {
20 }
21
22 void MediaControllerImpl::Play() {
23 }
24
25 void MediaControllerImpl::Stop() {
26 }
27
28 void MediaControllerImpl::Next() {
29 }
30
31 void MediaControllerImpl::Previous() {
32 }
33
34 void MediaControllerImpl::SeekRelative(double seek_seconds) {
35 }
36
37 void MediaControllerImpl::SeekAbsolute(double seek_seconds) {
38 }
39
40 void MediaControllerImpl::VolumeUp() {
41 }
42
43 void MediaControllerImpl::VolumeDown() {
44 }
45
46 void MediaControllerImpl::Mute() {
47 }
48
49 void MediaControllerImpl::Unmute() {
50 }
51
52 } // namespace media_router
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698