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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp

Issue 2654663004: [Not for review] record detailed time breakdown of SW related requests.
Patch Set: add stream uma Created 3 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/platform/exported/WebURLResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
index 260c3652b10d864a660d92cf4c1eb4471494c778..8556a7db0ca9531613e13e30899d9c89f2303ba0 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -154,6 +154,10 @@ void WebURLResponse::setResponseTime(long long responseTime) {
m_resourceResponse->setResponseTime(static_cast<int64_t>(responseTime));
}
+void WebURLResponse::setResponseStart(long long responseStart) {
+ m_resourceResponse->setResponseStart(static_cast<int64_t>(responseStart));
+}
+
WebString WebURLResponse::mimeType() const {
return m_resourceResponse->mimeType();
}

Powered by Google App Engine
This is Rietveld 408576698