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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceResponse.h

Issue 1548993002: Switch to standard integer types in base/strings/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/ResourceResponse.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.h b/third_party/WebKit/Source/platform/network/ResourceResponse.h
index 22553194aeddf01ca5a206eba664fdd2f76b3f1c..bc3e67c570b3fb8b880faa7680c3b883ac157153 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -208,8 +208,8 @@ public:
bool isMultipartPayload() const { return m_isMultipartPayload; }
void setIsMultipartPayload(bool value) { m_isMultipartPayload = value; }
- int64 responseTime() const { return m_responseTime; }
- void setResponseTime(int64 responseTime) { m_responseTime = responseTime; }
+ int64_t responseTime() const { return m_responseTime; }
+ void setResponseTime(int64_t responseTime) { m_responseTime = responseTime; }
const AtomicString& remoteIPAddress() const { return m_remoteIPAddress; }
void setRemoteIPAddress(const AtomicString& value) { m_remoteIPAddress = value; }
@@ -327,7 +327,7 @@ private:
// The time at which the response headers were received. For cached
// responses, this time could be "far" in the past.
- int64 m_responseTime;
+ int64_t m_responseTime;
// Remote IP address of the socket which fetched this resource.
AtomicString m_remoteIPAddress;
@@ -379,7 +379,7 @@ public:
bool m_wasFallbackRequiredByServiceWorker;
WebServiceWorkerResponseType m_serviceWorkerResponseType;
KURL m_originalURLViaServiceWorker;
- int64 m_responseTime;
+ int64_t m_responseTime;
String m_remoteIPAddress;
unsigned short m_remotePort;
String m_downloadedFilePath;

Powered by Google App Engine
This is Rietveld 408576698