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

Unified Diff: third_party/WebKit/Source/core/loader/DocumentLoader.cpp

Issue 2962113002: Updates to Server-Timing in accordance with with spec changes (Closed)
Patch Set: Created 3 years, 6 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/loader/DocumentLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
index bfeb81ca32f535a2f31f7b53f8db46376606187c..3b9d305d5392299f736658f78be560e10b9c1168 100644
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
@@ -951,13 +951,6 @@ void DocumentLoader::DidInstallNewDocument(Document* document) {
document->ParseAndSetReferrerPolicy(referrer_policy_header);
}
- if (RuntimeEnabledFeatures::ServerTimingEnabled() &&
- frame_->GetDocument()->domWindow()) {
- DOMWindowPerformance::performance(*(frame_->GetDocument()->domWindow()))
- ->AddServerTiming(response_,
- PerformanceBase::ShouldAddToBuffer::Always);
- }
-
GetLocalFrameClient().DidCreateNewDocument();
}

Powered by Google App Engine
This is Rietveld 408576698