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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentTiming.h

Issue 1456883002: Move paint-related timings out of DocumentTiming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/dom/DocumentTiming.h
diff --git a/third_party/WebKit/Source/core/dom/DocumentTiming.h b/third_party/WebKit/Source/core/dom/DocumentTiming.h
index 75a188eb11d1738d98b8dd0968435375e0ceed66..158ad6976f418d3fac5f723c104faee8fd5cae86 100644
--- a/third_party/WebKit/Source/core/dom/DocumentTiming.h
+++ b/third_party/WebKit/Source/core/dom/DocumentTiming.h
@@ -44,9 +44,6 @@ public:
void markDomContentLoadedEventEnd();
void markDomComplete();
void markFirstLayout();
- void markFirstPaint();
- void markFirstTextPaint();
- void markFirstImagePaint();
// These return monotonically-increasing seconds.
double domLoading() const { return m_domLoading; }
@@ -55,9 +52,6 @@ public:
double domContentLoadedEventEnd() const { return m_domContentLoadedEventEnd; }
double domComplete() const { return m_domComplete; }
double firstLayout() const { return m_firstLayout; }
- double firstPaint() const { return m_firstPaint; }
- double firstTextPaint() const { return m_firstTextPaint; }
- double firstImagePaint() const { return m_firstImagePaint; }
DECLARE_TRACE();
@@ -71,9 +65,6 @@ private:
double m_domContentLoadedEventEnd = 0.0;
double m_domComplete = 0.0;
double m_firstLayout = 0.0;
- double m_firstPaint = 0.0;
- double m_firstTextPaint = 0.0;
- double m_firstImagePaint = 0.0;
RawPtrWillBeMember<Document> m_document;
};
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698