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

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

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.h
diff --git a/Source/modules/fetch/Headers.h b/Source/modules/fetch/Headers.h
index c9d5c426951f6cdb2401e386b493ecb6f2d889c2..fa662a76f9052dc9ef5db1ccda8bd90b5d490839 100644
--- a/Source/modules/fetch/Headers.h
+++ b/Source/modules/fetch/Headers.h
@@ -27,7 +27,7 @@ public:
static Headers* create();
static Headers* create(ExceptionState&);
static Headers* create(const Headers*, ExceptionState&);
- static Headers* create(const Vector<Vector<String> >&, ExceptionState&);
+ static Headers* create(const Vector<Vector<String>>&, ExceptionState&);
static Headers* create(const Dictionary&, ExceptionState&);
// Shares the FetchHeaderList. Called when creating a Request or Response.
@@ -48,7 +48,7 @@ public:
// These methods should only be called when size() would return 0.
void fillWith(const Headers*, ExceptionState&);
- void fillWith(const Vector<Vector<String> >&, ExceptionState&);
+ void fillWith(const Vector<Vector<String>>&, ExceptionState&);
void fillWith(const Dictionary&, ExceptionState&);
FetchHeaderList* headerList() const { return m_headerList; }

Powered by Google App Engine
This is Rietveld 408576698