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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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.h
diff --git a/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.h b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.h
index c69127a2ad8b2c4a672055544ef1b82c47f85326..c23faed73f3cc9255a4294eb16f7f5251dac87a9 100644
--- a/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.h
+++ b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.h
@@ -16,10 +16,8 @@ class ExecutionContext;
class PaintWorklet;
class Worklet;
-class WindowPaintWorklet final : public NoBaseWillBeGarbageCollected<WindowPaintWorklet>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WindowPaintWorklet);
- DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(WindowPaintWorklet);
- USING_FAST_MALLOC_WILL_BE_REMOVED(WindowPaintWorklet);
+class WindowPaintWorklet final : public GarbageCollected<WindowPaintWorklet>, public HeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
+ USING_GARBAGE_COLLECTED_MIXIN(WindowPaintWorklet);
public:
static WindowPaintWorklet& from(LocalDOMWindow&);
static Worklet* paintWorklet(ExecutionContext*, DOMWindow&);
@@ -31,7 +29,7 @@ private:
explicit WindowPaintWorklet(LocalDOMWindow&);
static const char* supplementName();
- mutable PersistentWillBeMember<PaintWorklet> m_paintWorklet;
+ mutable Member<PaintWorklet> m_paintWorklet;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698