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

Side by Side Diff: content/public/browser/media_session.cc

Issue 2623953002: [Chromecast] Fix media session blocking tests. (Closed)
Patch Set: Move MockMediaSession into chromecast/ only Created 3 years, 11 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 (c) 2017 The Chromium Authors. All rights reserved.
Zhiqiang Zhang (Slow) 2017/01/30 12:09:10 You can probably remove this file now.
derekjchow1 2017/02/01 01:22:18 Done.
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 "content/public/browser/media_session.h"
6
7 namespace content {
8
9 MediaSession::MediaSession() {}
mlamouri (slow - plz ping) 2017/01/28 02:01:40 = default;
derekjchow1 2017/02/01 01:22:18 Done.
10
11 MediaSession::~MediaSession() {}
mlamouri (slow - plz ping) 2017/01/28 02:01:40 = default;
derekjchow1 2017/02/01 01:22:18 Done.
12
13 void MediaSession::AddObserver(MediaSessionObserver* observer) {
14 observers_.AddObserver(observer);
15 }
16
17 void MediaSession::RemoveObserver(MediaSessionObserver* observer) {
18 observers_.RemoveObserver(observer);
19 }
20
21 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698