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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp

Issue 2341333003: Use chromium trace_event implementation in blink (Closed)
Patch Set: Created 4 years, 3 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/platform/network/ResourceLoadTiming.cpp
diff --git a/third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp b/third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp
index 41f97e99b41172aa240cc0cdf1e0ad02b9535857..96d5a8dfce40a2e07312318baac8cc8714c1b78f 100644
--- a/third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp
+++ b/third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp
@@ -127,7 +127,7 @@ void ResourceLoadTiming::setWorkerReady(double workerReady)
void ResourceLoadTiming::setSendStart(double sendStart)
{
- TRACE_EVENT_MARK_WITH_TIMESTAMP0("blink.user_timing", "requestStart", sendStart);
+ TRACE_EVENT_MARK_WITH_TIMESTAMP0("blink.user_timing", "requestStart", TraceEvent::toTraceTimestamp(sendStart));
m_sendStart = sendStart;
}

Powered by Google App Engine
This is Rietveld 408576698