| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
|
| index beb0093a88123be7d8f633fa9af90b986b1d8daa..7d5865324e8dc62b5689f4fd7a5c45a4a61f621f 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
|
| @@ -294,7 +294,7 @@ class StubWebServiceWorkerProvider {
|
| m_owner.m_registerCallCount++;
|
| m_owner.m_registerScope = pattern;
|
| m_owner.m_registerScriptURL = scriptURL;
|
| - m_registrationCallbacksToDelete.append(std::move(callbacks));
|
| + m_registrationCallbacksToDelete.push_back(std::move(callbacks));
|
| }
|
|
|
| void getRegistration(
|
| @@ -303,7 +303,7 @@ class StubWebServiceWorkerProvider {
|
| override {
|
| m_owner.m_getRegistrationCallCount++;
|
| m_owner.m_getRegistrationURL = documentURL;
|
| - m_getRegistrationCallbacksToDelete.append(std::move(callbacks));
|
| + m_getRegistrationCallbacksToDelete.push_back(std::move(callbacks));
|
| }
|
|
|
| bool validateScopeAndScriptURL(const WebURL& scope,
|
|
|