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

Unified Diff: public/platform/WebURLLoadTiming.h

Issue 15863002: Fix ResourceLoadTiming Resolution Issue 3rd step - remove old fields (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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
« no previous file with comments | « Source/core/platform/network/ResourceLoadTiming.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebURLLoadTiming.h
diff --git a/public/platform/WebURLLoadTiming.h b/public/platform/WebURLLoadTiming.h
index fc185a5f8548460e3550e198be3e80cc84136675..07f15d2ce2e558daa9ec4a4a95b049527c24511b 100644
--- a/public/platform/WebURLLoadTiming.h
+++ b/public/platform/WebURLLoadTiming.h
@@ -60,7 +60,6 @@ public:
WEBKIT_EXPORT double requestTime() const;
WEBKIT_EXPORT void setRequestTime(double);
-#ifdef ENABLE_DOUBLE_RESOURCE_LOAD_TIMING
WEBKIT_EXPORT double proxyStart() const;
WEBKIT_EXPORT void setProxyStart(double);
@@ -93,40 +92,6 @@ public:
WEBKIT_EXPORT double sslEnd() const;
WEBKIT_EXPORT void setSSLEnd(double);
-#else
- WEBKIT_EXPORT int proxyStart() const;
- WEBKIT_EXPORT void setProxyStart(int);
-
- WEBKIT_EXPORT int proxyEnd() const;
- WEBKIT_EXPORT void setProxyEnd(int);
-
- WEBKIT_EXPORT int dnsStart() const;
- WEBKIT_EXPORT void setDNSStart(int);
-
- WEBKIT_EXPORT int dnsEnd() const;
- WEBKIT_EXPORT void setDNSEnd(int);
-
- WEBKIT_EXPORT int connectStart() const;
- WEBKIT_EXPORT void setConnectStart(int);
-
- WEBKIT_EXPORT int connectEnd() const;
- WEBKIT_EXPORT void setConnectEnd(int);
-
- WEBKIT_EXPORT int sendStart() const;
- WEBKIT_EXPORT void setSendStart(int);
-
- WEBKIT_EXPORT int sendEnd() const;
- WEBKIT_EXPORT void setSendEnd(int);
-
- WEBKIT_EXPORT int receiveHeadersEnd() const;
- WEBKIT_EXPORT void setReceiveHeadersEnd(int);
-
- WEBKIT_EXPORT int sslStart() const;
- WEBKIT_EXPORT void setSSLStart(int);
-
- WEBKIT_EXPORT int sslEnd() const;
- WEBKIT_EXPORT void setSSLEnd(int);
-#endif
#if WEBKIT_IMPLEMENTATION
WebURLLoadTiming(const WTF::PassRefPtr<WebCore::ResourceLoadTiming>&);
« no previous file with comments | « Source/core/platform/network/ResourceLoadTiming.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698