| 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; }
|
|
|