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

Unified Diff: Source/modules/fetch/ResponseInit.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/ResponseInit.h
diff --git a/Source/modules/fetch/ResponseInit.h b/Source/modules/fetch/ResponseInit.h
index c11f6602e3c5161489420a8c04014e0d5ef10ede..9a9235685914363864744b0368c3e6c0102cdf73 100644
--- a/Source/modules/fetch/ResponseInit.h
+++ b/Source/modules/fetch/ResponseInit.h
@@ -30,7 +30,7 @@ public:
DictionaryHelper::get(options, "statusText", statusText);
DictionaryHelper::get(options, "headers", headers);
if (!headers) {
- Vector<Vector<String> > headersVector;
+ Vector<Vector<String>> headersVector;
if (DictionaryHelper::get(options, "headers", headersVector, exceptionState))
headers = Headers::create(headersVector, exceptionState);
else

Powered by Google App Engine
This is Rietveld 408576698