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

Unified Diff: Source/modules/presentation/PresentationSession.h

Issue 685263003: The rest of the Presentation API IDL as stubs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added OWNERS file for real Created 6 years, 1 month 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/presentation/Presentation.idl ('k') | Source/modules/presentation/PresentationSession.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/presentation/PresentationSession.h
diff --git a/Source/modules/presentation/PresentationSession.h b/Source/modules/presentation/PresentationSession.h
new file mode 100644
index 0000000000000000000000000000000000000000..14521c34cdd0a4005936a408229a377049ccb7b1
--- /dev/null
+++ b/Source/modules/presentation/PresentationSession.h
@@ -0,0 +1,50 @@
+// Copyright 2014 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 PresentationSession_h
+#define PresentationSession_h
+
+#include "core/dom/ContextLifecycleObserver.h"
+#include "core/events/EventTarget.h"
+#include "wtf/text/AtomicString.h"
+#include "wtf/text/WTFString.h"
+
+namespace blink {
+
+class PresentationSession final
+ : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<PresentationSession>
+ , public EventTargetWithInlineData
+ , public ContextLifecycleObserver {
+ DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<PresentationSession>);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PresentationSession);
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ static PresentationSession* create(ExecutionContext*);
+ virtual ~PresentationSession();
+
+ // EventTarget implementation.
+ virtual const AtomicString& interfaceName() const override;
+ virtual ExecutionContext* executionContext() const override;
+
+ virtual void trace(Visitor*) override;
+
+ const String& id() const { return m_id; }
+ const AtomicString& state() const { return m_state; }
+
+ void postMessage(const String& message);
+ void close();
+
+ DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
+ DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange);
+
+private:
+ explicit PresentationSession(ExecutionContext*);
+
+ String m_id;
+ AtomicString m_state;
+};
+
+} // namespace blink
+
+#endif // PresentationSession_h
« no previous file with comments | « Source/modules/presentation/Presentation.idl ('k') | Source/modules/presentation/PresentationSession.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698