| Index: third_party/WebKit/Source/modules/background_sync/SyncManager.cpp
|
| diff --git a/third_party/WebKit/Source/modules/background_sync/SyncManager.cpp b/third_party/WebKit/Source/modules/background_sync/SyncManager.cpp
|
| index 618149be1b7b235a0dc6dff5c9a16036a42b26ca..7a75f599b7c477aeb5b33ac96183c05a37caaf05 100644
|
| --- a/third_party/WebKit/Source/modules/background_sync/SyncManager.cpp
|
| +++ b/third_party/WebKit/Source/modules/background_sync/SyncManager.cpp
|
| @@ -122,7 +122,7 @@ void SyncManager::getRegistrationsCallback(
|
| case mojom::blink::BackgroundSyncError::NONE: {
|
| Vector<String> tags;
|
| for (const auto& r : registrations) {
|
| - tags.append(r->tag);
|
| + tags.push_back(r->tag);
|
| }
|
| resolver->resolve(tags);
|
| break;
|
|
|