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

Unified Diff: third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp

Issue 1818223002: Introduce PaintWorkletGlobalScope, rename renderWorklet attribute to paintWorklet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix interface listing order. Created 4 years, 9 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/csspaint/WindowPaintWorklet.cpp
diff --git a/third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
similarity index 36%
rename from third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp
rename to third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
index 07a4a32dba258e9ae7e023b52444318eb4160942..3e1165655c4a636622b66e7c3952f77dc46e42fd 100644
--- a/third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
@@ -2,53 +2,53 @@
// 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 "modules/csspaint/WindowPaintWorklet.h"
#include "core/frame/LocalDOMWindow.h"
#include "core/frame/LocalFrame.h"
-#include "modules/worklet/Worklet.h"
+#include "modules/csspaint/PaintWorklet.h"
namespace blink {
-DOMWindowWorklet::DOMWindowWorklet(LocalDOMWindow& window)
+WindowPaintWorklet::WindowPaintWorklet(LocalDOMWindow& window)
: DOMWindowProperty(window.frame())
{
}
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowWorklet);
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(WindowPaintWorklet);
-const char* DOMWindowWorklet::supplementName()
+const char* WindowPaintWorklet::supplementName()
{
- return "DOMWindowWorklet";
+ return "WindowPaintWorklet";
}
// static
-DOMWindowWorklet& DOMWindowWorklet::from(LocalDOMWindow& window)
+WindowPaintWorklet& WindowPaintWorklet::from(LocalDOMWindow& window)
{
- DOMWindowWorklet* supplement = static_cast<DOMWindowWorklet*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
+ WindowPaintWorklet* supplement = static_cast<WindowPaintWorklet*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
if (!supplement) {
- supplement = new DOMWindowWorklet(window);
+ supplement = new WindowPaintWorklet(window);
provideTo(window, supplementName(), adoptPtrWillBeNoop(supplement));
}
return *supplement;
}
// static
-Worklet* DOMWindowWorklet::renderWorklet(ExecutionContext* executionContext, DOMWindow& window)
+Worklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext, DOMWindow& window)
{
- return from(toLocalDOMWindow(window)).renderWorklet(executionContext);
+ return from(toLocalDOMWindow(window)).paintWorklet(executionContext);
}
-Worklet* DOMWindowWorklet::renderWorklet(ExecutionContext* executionContext) const
+PaintWorklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext) const
{
- if (!m_renderWorklet && frame())
- m_renderWorklet = Worklet::create(frame(), executionContext);
- return m_renderWorklet.get();
+ if (!m_paintWorklet && frame())
+ m_paintWorklet = PaintWorklet::create(frame(), executionContext);
+ return m_paintWorklet.get();
}
-DEFINE_TRACE(DOMWindowWorklet)
+DEFINE_TRACE(WindowPaintWorklet)
{
- visitor->trace(m_renderWorklet);
+ visitor->trace(m_paintWorklet);
WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
DOMWindowProperty::trace(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698