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

Unified Diff: third_party/WebKit/Source/core/paint/PaintTiming.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, 10 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 c62174e9a9221c94dd0b3a3af4d3443bfc9b8927..2300730560e6bfa5711ddd0050d5e4c63843a7bb 100644
--- a/third_party/WebKit/Source/core/paint/PaintTiming.h
+++ b/third_party/WebKit/Source/core/paint/PaintTiming.h
@@ -13,8 +13,8 @@ namespace blink {
class LocalFrame;
-class PaintTiming final : public NoBaseWillBeGarbageCollectedFinalized<PaintTiming>, public WillBeHeapSupplement<Document> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PaintTiming);
+class PaintTiming final : public GarbageCollectedFinalized<PaintTiming>, public HeapSupplement<Document> {
+ USING_GARBAGE_COLLECTED_MIXIN(PaintTiming);
public:
virtual ~PaintTiming() { }
@@ -43,7 +43,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