Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(965)

Unified Diff: content/browser/background_sync/background_sync_service_impl.cc

Issue 2522553003: Mojo C++ bindings: switch WebKit mojom targets to use STL/WTF types. (Closed)
Patch Set: . Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/background_sync/background_sync_service_impl.cc
diff --git a/content/browser/background_sync/background_sync_service_impl.cc b/content/browser/background_sync/background_sync_service_impl.cc
index c2a9ef88fc88423e2d8039eb72af77a1fdfc63c2..2bda9e73d2806a738e5015600f701a9bedb1257f 100644
--- a/content/browser/background_sync/background_sync_service_impl.cc
+++ b/content/browser/background_sync/background_sync_service_impl.cc
@@ -151,7 +151,7 @@ void BackgroundSyncServiceImpl::OnGetRegistrationsResult(
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(result_registrations);
- mojo::Array<blink::mojom::SyncRegistrationPtr> mojo_registrations;
+ std::vector<blink::mojom::SyncRegistrationPtr> mojo_registrations;
for (const BackgroundSyncRegistration* registration : *result_registrations)
mojo_registrations.push_back(ToMojoRegistration(*registration));

Powered by Google App Engine
This is Rietveld 408576698