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

Side by Side Diff: public/platform/modules/mediasession/WebMediaSession.h

Issue 1325493002: NOT FOR LANDING Introduce and use WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing files Created 5 years, 3 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
« no previous file with comments | « public/BUILD.gn ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 WebMediaSession_h
6 #define WebMediaSession_h
7
8 #include "public/platform/WebCallbacks.h"
9 #include "public/platform/modules/mediasession/WebMediaSessionError.h"
10
11 namespace blink {
12
13 using WebMediaSessionCommandCallback = WebCallbacks<void, const WebMediaSessionE rror&>;
14
15 class WebMediaSession {
16 public:
17 virtual ~WebMediaSession() {}
18
19 virtual void activate(WebMediaSessionCommandCallback*) = 0;
20 virtual void deactivate(WebMediaSessionCommandCallback*) = 0;
21 };
22
23 } // namespace blink
24
25 #endif // WebMediaSession_h
OLDNEW
« no previous file with comments | « public/BUILD.gn ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698