Chromium Code Reviews| Index: Source/platform/network/ResourceResponse.h |
| diff --git a/Source/platform/network/ResourceResponse.h b/Source/platform/network/ResourceResponse.h |
| index 20e02850acd91bb3d00a188af331f141b5c0dfed..1655eafc14ecac281fe1a017ac96987d8c129d22 100644 |
| --- a/Source/platform/network/ResourceResponse.h |
| +++ b/Source/platform/network/ResourceResponse.h |
| @@ -162,6 +162,9 @@ public: |
| bool wasFetchedViaServiceWorker() const { return m_wasFetchedViaServiceWorker; } |
| void setWasFetchedViaServiceWorker(bool value) { m_wasFetchedViaServiceWorker = value; } |
| + bool wasFallbackRequired() const { return m_wasFallbackRequired; } |
| + void setWasFallbackRequired(bool value) { m_wasFallbackRequired = value; } |
| + |
| bool isMultipartPayload() const { return m_isMultipartPayload; } |
| void setIsMultipartPayload(bool value) { m_isMultipartPayload = value; } |
| @@ -258,6 +261,9 @@ private: |
| // Was the resource fetched over a ServiceWorker. |
| bool m_wasFetchedViaServiceWorker; |
| + // Was the fallback request with skip service worker flag required. |
| + bool m_wasFallbackRequired; |
|
yhirano
2014/09/26 01:23:32
Isn't this name too generic? Suffixing with "BySer
horo
2014/09/26 01:44:16
Done.
|
| + |
| // The time at which the response headers were received. For cached |
| // responses, this time could be "far" in the past. |
| double m_responseTime; |
| @@ -306,6 +312,7 @@ public: |
| bool m_wasAlternateProtocolAvailable; |
| bool m_wasFetchedViaProxy; |
| bool m_wasFetchedViaServiceWorker; |
| + bool m_wasFallbackRequired; |
|
yhirano
2014/09/26 01:23:32
ditto
horo
2014/09/26 01:44:16
Done.
|
| double m_responseTime; |
| String m_remoteIPAddress; |
| unsigned short m_remotePort; |