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

Side by Side Diff: content/browser/media/android/browser_media_session_manager.h

Issue 1259633002: NOT FOR LANDING Implement WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hack until something works Created 5 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
(Empty)
1 // Copyright 2015 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 #ifndef CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_SESSION_MANAGER_H_
6 #define CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_SESSION_MANAGER_H_
7
8 #include "base/basictypes.h"
9
10 namespace content {
11
12 class RenderFrameHost;
13
14 class BrowserMediaSessionManager {
15 public:
16 BrowserMediaSessionManager(RenderFrameHost* render_frame_host);
17
18 // Message handlers.
19 void OnActivate(int session_id);
20 void OnDeactivate(int session_id);
21
22 private:
23 RenderFrameHost* const render_frame_host_;
24
25 DISALLOW_COPY_AND_ASSIGN(BrowserMediaSessionManager);
26 };
27
28 } // namespace content
29
30 #endif // CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_SESSION_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698