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

Unified Diff: third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp

Issue 1590583002: Expose worklet on Window through attribute renderWorklet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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/worklet/DOMWindowWorklet.cpp
diff --git a/third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp b/third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..687d0cb23711a4d4829e757d2cd2f48884dccf82
--- /dev/null
+++ b/third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp
@@ -0,0 +1,56 @@
+// 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.
+
+#include "modules/worklet/DOMWindowWorklet.h"
+
+#include "core/frame/LocalDOMWindow.h"
+#include "core/frame/LocalFrame.h"
+#include "modules/worklet/Worklet.h"
+
+namespace blink {
+
+DOMWindowWorklet::DOMWindowWorklet(LocalDOMWindow& window)
+ : DOMWindowProperty(window.frame())
+{
+}
+
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowWorklet);
+
+const char* DOMWindowWorklet::supplementName()
+{
+ return "DOMWindowWorklet";
+}
+
+// static
+DOMWindowWorklet& DOMWindowWorklet::from(LocalDOMWindow& window)
+{
+ DOMWindowWorklet* supplement = static_cast<DOMWindowWorklet*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
+ if (!supplement) {
+ supplement = new DOMWindowWorklet(window);
+ provideTo(window, supplementName(), adoptPtrWillBeNoop(supplement));
+ }
+ return *supplement;
+}
+
+// static
+Worklet* DOMWindowWorklet::renderWorklet(ExecutionContext* executionContext, DOMWindow& window)
+{
+ return DOMWindowWorklet::from(toLocalDOMWindow(window)).renderWorklet(executionContext);
kinuko 2016/01/15 04:19:34 nit: DOMWindowWorklet:: not needed
ikilpatrick 2016/01/15 16:22:44 Done.
+}
+
+Worklet* DOMWindowWorklet::renderWorklet(ExecutionContext* executionContext) const
+{
+ if (!m_renderWorklet && frame())
+ m_renderWorklet = Worklet::create(executionContext);
+ return m_renderWorklet.get();
+}
+
+DEFINE_TRACE(DOMWindowWorklet)
+{
+ visitor->trace(m_renderWorklet);
+ WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
+ DOMWindowProperty::trace(visitor);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698