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

Unified Diff: third_party/WebKit/Source/core/paint/PaintTiming.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/core/paint/PaintTiming.h
diff --git a/third_party/WebKit/Source/core/paint/PaintTiming.h b/third_party/WebKit/Source/core/paint/PaintTiming.h
index b2a28a1b3041df71f736cdfb4305fa1a544d33b2..0aa859677331d90df0ed6ae9773aac67cc2774b6 100644
--- a/third_party/WebKit/Source/core/paint/PaintTiming.h
+++ b/third_party/WebKit/Source/core/paint/PaintTiming.h
@@ -16,9 +16,9 @@ class LocalFrame;
// PaintTiming is responsible for tracking paint-related timings for a given
// document.
-class PaintTiming final : public NoBaseWillBeGarbageCollectedFinalized<PaintTiming>, public WillBeHeapSupplement<Document> {
+class PaintTiming final : public GarbageCollectedFinalized<PaintTiming>, public HeapSupplement<Document> {
WTF_MAKE_NONCOPYABLE(PaintTiming);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PaintTiming);
+ USING_GARBAGE_COLLECTED_MIXIN(PaintTiming);
public:
virtual ~PaintTiming() { }
@@ -82,7 +82,7 @@ private:
double m_firstImagePaint = 0.0;
double m_firstContentfulPaint = 0.0;
- RawPtrWillBeMember<Document> m_document;
+ Member<Document> m_document;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698