Index: Source/platform/network/HTTPParsers.cpp |
diff --git a/Source/platform/network/HTTPParsers.cpp b/Source/platform/network/HTTPParsers.cpp |
index 71fb7d9e83bcf26d8b9370c9bf57ea3eff8c2139..caec207b51a546f0a82ce9c77a7d395640a289d8 100644 |
--- a/Source/platform/network/HTTPParsers.cpp |
+++ b/Source/platform/network/HTTPParsers.cpp |
@@ -748,7 +748,7 @@ static inline String trimToNextSeparator(const String& str) |
return str.substring(0, str.find(isCacheHeaderSeparator)); |
} |
-static void parseCacheHeader(const String& header, Vector<pair<String, String> >& result) |
+static void parseCacheHeader(const String& header, Vector<pair<String, String>>& result) |
{ |
const String safeHeader = header.removeCharacters(isControlCharacter); |
unsigned max = safeHeader.length(); |
@@ -816,7 +816,7 @@ CacheControlHeader parseCacheControlDirectives(const AtomicString& cacheControlV |
DEFINE_STATIC_LOCAL(const AtomicString, maxAgeDirective, ("max-age", AtomicString::ConstructFromLiteral)); |
if (!cacheControlValue.isEmpty()) { |
- Vector<pair<String, String> > directives; |
+ Vector<pair<String, String>> directives; |
parseCacheHeader(cacheControlValue, directives); |
size_t directivesSize = directives.size(); |