| Index: third_party/WebKit/public/platform/WebCachePolicy.h
|
| diff --git a/third_party/WebKit/public/platform/WebCachePolicy.h b/third_party/WebKit/public/platform/WebCachePolicy.h
|
| index 09700b1f38803930f8bdc78b7548142cc5d8da82..b934b72646303cc2d62769d0b51845fea1062ab0 100644
|
| --- a/third_party/WebKit/public/platform/WebCachePolicy.h
|
| +++ b/third_party/WebKit/public/platform/WebCachePolicy.h
|
| @@ -7,7 +7,7 @@
|
|
|
| namespace blink {
|
|
|
| -enum class WebCachePolicy {
|
| +enum class WebCachePolicy : uint8_t {
|
| kUseProtocolCachePolicy, // normal load
|
| kValidatingCacheData, // reload
|
| kBypassingCache, // end-to-end reload
|
| @@ -15,7 +15,7 @@ enum class WebCachePolicy {
|
| // data
|
| kReturnCacheDataDontLoad, // results of a post - allow stale data and only
|
| // use cache
|
| - kReturnCacheDataIfValid, // for cache-aware loading - disallow stale data
|
| + kReturnCacheDataIfValid, // for cache-aware loading - disallow stale data
|
| kBypassCacheLoadOnlyFromCache, // for cache-only load when disable cache
|
| // is enabled. Results in a network error.
|
| };
|
|
|