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

Unified Diff: Source/modules/mediasession/MediaSession.h

Issue 1206283002: Add MediaSession runtime flag along with stub MediaSession object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add dummy warning to test, move comment to test and update stale expected file. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/mediasession/DEPS ('k') | Source/modules/mediasession/MediaSession.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasession/MediaSession.h
diff --git a/Source/modules/mediasession/MediaSession.h b/Source/modules/mediasession/MediaSession.h
new file mode 100644
index 0000000000000000000000000000000000000000..e7dd0cf5c4f7ac856ce34697f86d8c662213656c
--- /dev/null
+++ b/Source/modules/mediasession/MediaSession.h
@@ -0,0 +1,27 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MediaSession_h
+#define MediaSession_h
+
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "platform/heap/Handle.h"
+
+namespace blink {
+
+class MediaSession : public ScriptWrappable, public RefCountedWillBeNoBase<MediaSession> {
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ static RefPtrWillBeRawPtr<MediaSession> create();
+
+ void activate();
+ void deactivate();
+
+private:
+ MediaSession();
+};
+
+}
+
+#endif // MediaSession_h
« no previous file with comments | « Source/modules/mediasession/DEPS ('k') | Source/modules/mediasession/MediaSession.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698