| Index: third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.cpp b/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.cpp
|
| index ef71278f32c381cd73c2b6e05880e190321c5792..918271674348aea96405d3e39d852789424212fb 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.cpp
|
| @@ -16,7 +16,7 @@ Vector<String> InternalsFetch::getInternalResponseURLList(Internals& internals,
|
| Vector<String> urlList;
|
| urlList.reserveCapacity(response->internalURLList().size());
|
| for (const auto& url : response->internalURLList())
|
| - urlList.append(url);
|
| + urlList.push_back(url);
|
| return urlList;
|
| }
|
|
|
|
|