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

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

Issue 2617103002: Use a new Supplement constructor for Supplement<Document> (Part 1) (Closed)
Patch Set: temp Created 3 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/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 336e8cacad5cd3c060bae413375f939ce0029660..878401ebe7ff4e011ffa582adef576e8eba9f9b4 100644
--- a/third_party/WebKit/Source/core/paint/PaintTiming.h
+++ b/third_party/WebKit/Source/core/paint/PaintTiming.h
@@ -78,7 +78,6 @@ class CORE_EXPORT PaintTiming final
return m_firstMeaningfulPaintCandidate;
}
- Document* document() { return m_document.get(); }
FirstMeaningfulPaintDetector& firstMeaningfulPaintDetector() {
return *m_fmpDetector;
}
@@ -109,7 +108,6 @@ class CORE_EXPORT PaintTiming final
double m_firstMeaningfulPaint = 0.0;
double m_firstMeaningfulPaintCandidate = 0.0;
- Member<Document> m_document;
Member<FirstMeaningfulPaintDetector> m_fmpDetector;
};

Powered by Google App Engine
This is Rietveld 408576698