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

Unified Diff: Source/modules/fetch/Headers.cpp

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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: Source/modules/fetch/Headers.cpp
diff --git a/Source/modules/fetch/Headers.cpp b/Source/modules/fetch/Headers.cpp
index 651c9b4d00c844e5977e804061a227c698d5e5c3..b57a5803635d8659063017062ca52067db7a25ad 100644
--- a/Source/modules/fetch/Headers.cpp
+++ b/Source/modules/fetch/Headers.cpp
@@ -70,7 +70,7 @@ Headers* Headers::create(const Headers* init, ExceptionState& exceptionState)
return headers;
}
-Headers* Headers::create(const Vector<Vector<String> >& init, ExceptionState& exceptionState)
+Headers* Headers::create(const Vector<Vector<String>>& init, ExceptionState& exceptionState)
{
// The same steps as above.
Headers* headers = create();
@@ -259,7 +259,7 @@ void Headers::fillWith(const Headers* object, ExceptionState& exceptionState)
}
}
-void Headers::fillWith(const Vector<Vector<String> >& object, ExceptionState& exceptionState)
+void Headers::fillWith(const Vector<Vector<String>>& object, ExceptionState& exceptionState)
{
ASSERT(!m_headerList->size());
// "2. Otherwise, if |object| is a sequence, then for each |header| in

Powered by Google App Engine
This is Rietveld 408576698