Chromium Code Reviews

Unified Diff: Source/modules/fetch/FetchHeaderList.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.
Jump to:
View side-by-side diff with in-line comments
Index: Source/modules/fetch/FetchHeaderList.h
diff --git a/Source/modules/fetch/FetchHeaderList.h b/Source/modules/fetch/FetchHeaderList.h
index f81b35c3ee4d5c9c3486e0a6db46310a6a3b7ffa..66592c4dc2a5a100aca5e1122104695dc0c8afe5 100644
--- a/Source/modules/fetch/FetchHeaderList.h
+++ b/Source/modules/fetch/FetchHeaderList.h
@@ -38,7 +38,7 @@ public:
bool containsNonSimpleHeader() const;
- const Vector<OwnPtr<Header> >& list() const { return m_headerList; }
+ const Vector<OwnPtr<Header>>& list() const { return m_headerList; }
const Header& entry(size_t index) const { return *(m_headerList[index].get()); }
static bool isValidHeaderName(const String&);
@@ -48,7 +48,7 @@ public:
private:
FetchHeaderList();
- Vector<OwnPtr<Header> > m_headerList;
+ Vector<OwnPtr<Header>> m_headerList;
};
} // namespace blink

Powered by Google App Engine