| Index: third_party/WebKit/Source/core/loader/CrossOriginPreflightResultCache.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/CrossOriginPreflightResultCache.cpp b/third_party/WebKit/Source/core/loader/CrossOriginPreflightResultCache.cpp
|
| index 1c290a4ba9c3e2965cb85c29879b1fdf859de69f..277b8a50949e2d9d26063e79e5b6e1ca11613a4b 100644
|
| --- a/third_party/WebKit/Source/core/loader/CrossOriginPreflightResultCache.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/CrossOriginPreflightResultCache.cpp
|
| @@ -36,9 +36,12 @@
|
| namespace blink {
|
|
|
| // These values are at the discretion of the user agent.
|
| +
|
| static const unsigned defaultPreflightCacheTimeoutSeconds = 5;
|
| -static const unsigned maxPreflightCacheTimeoutSeconds =
|
| - 600; // Should be short enough to minimize the risk of using a poisoned cache after switching to a secure network.
|
| +
|
| +// Should be short enough to minimize the risk of using a poisoned cache after
|
| +// switching to a secure network.
|
| +static const unsigned maxPreflightCacheTimeoutSeconds = 600;
|
|
|
| static bool parseAccessControlMaxAge(const String& string,
|
| unsigned& expiryDelta) {
|
|
|