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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnectionList.h

Issue 2265363002: [Presentation API] make PresentationReceiver API consistent with latest spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix layout test global-interface-listing.html Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/presentation/PresentationConnectionList.h
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnectionList.h b/third_party/WebKit/Source/modules/presentation/PresentationConnectionList.h
new file mode 100644
index 0000000000000000000000000000000000000000..71b6c3f6f43081667157aa1a7513a177d349110c
--- /dev/null
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnectionList.h
@@ -0,0 +1,43 @@
+// Copyright 2016 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 PresentationConnectionList_h
+#define PresentationConnectionList_h
+
+#include "core/dom/ContextLifecycleObserver.h"
+#include "core/events/EventTarget.h"
+#include "modules/presentation/PresentationConnection.h"
+#include "platform/heap/Handle.h"
+#include "platform/heap/Heap.h"
+
+namespace blink {
+
+// Implements the PresentationConnectionList interface from the Presentation API from
+// which represents set of presentation connections in the set of
+// presentation controllers.
+class PresentationConnectionList final
+ : public EventTargetWithInlineData
+ , public ContextLifecycleObserver {
+ USING_GARBAGE_COLLECTED_MIXIN(PresentationConnectionList);
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ explicit PresentationConnectionList(ExecutionContext*);
+ ~PresentationConnectionList() = default;
+
+ // EventTarget implementation.
+ const AtomicString& interfaceName() const override;
+ ExecutionContext* getExecutionContext() const override;
+
+ const HeapVector<Member<PresentationConnection>>& connections() const;
+ DEFINE_ATTRIBUTE_EVENT_LISTENER(connectionavailable);
+
+ DECLARE_VIRTUAL_TRACE();
+
+private:
+ HeapVector<Member<PresentationConnection>> m_connections;
+};
+
+} // namespace blink
+
+#endif // PresentationConnectionList_h

Powered by Google App Engine
This is Rietveld 408576698