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

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

Issue 2767853003: Remove stale-while-revalidate from blink (Closed)
Patch Set: Created 3 years, 9 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
Index: third_party/WebKit/Source/platform/network/HTTPParsers.h
diff --git a/third_party/WebKit/Source/platform/network/HTTPParsers.h b/third_party/WebKit/Source/platform/network/HTTPParsers.h
index f6b2b5fd7c30773311618429cd73489ccf8e18c4..a2094bf3b2d7c6d2df5fce7b3c6384596b635734 100644
--- a/third_party/WebKit/Source/platform/network/HTTPParsers.h
+++ b/third_party/WebKit/Source/platform/network/HTTPParsers.h
@@ -79,15 +79,13 @@ struct CacheControlHeader {
bool containsNoStore : 1;
bool containsMustRevalidate : 1;
double maxAge;
- double staleWhileRevalidate;
CacheControlHeader()
: parsed(false),
containsNoCache(false),
containsNoStore(false),
containsMustRevalidate(false),
- maxAge(0.0),
- staleWhileRevalidate(0.0) {}
+ maxAge(0.0) {}
};
PLATFORM_EXPORT ContentDispositionType getContentDispositionType(const String&);

Powered by Google App Engine
This is Rietveld 408576698