Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |