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