| Index: content/browser/background_sync/background_sync_context.cc
|
| diff --git a/content/browser/background_sync/background_sync_context.cc b/content/browser/background_sync/background_sync_context.cc
|
| index 92904749a81e1018543fd54475b45af6e2ba93d1..070a5369c4e429e0955c19d2b1b1bcc9ffababcf 100644
|
| --- a/content/browser/background_sync/background_sync_context.cc
|
| +++ b/content/browser/background_sync/background_sync_context.cc
|
| @@ -43,7 +43,7 @@ void BackgroundSyncContext::Shutdown() {
|
| }
|
|
|
| void BackgroundSyncContext::CreateService(
|
| - mojo::InterfaceRequest<mojom::BackgroundSyncService> request) {
|
| + mojo::InterfaceRequest<blink::mojom::BackgroundSyncService> request) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
|
|
| BrowserThread::PostTask(
|
| @@ -83,7 +83,7 @@ void BackgroundSyncContext::CreateBackgroundSyncManager(
|
| }
|
|
|
| void BackgroundSyncContext::CreateServiceOnIOThread(
|
| - mojo::InterfaceRequest<mojom::BackgroundSyncService> request) {
|
| + mojo::InterfaceRequest<blink::mojom::BackgroundSyncService> request) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| DCHECK(background_sync_manager_);
|
| services_.insert(new BackgroundSyncServiceImpl(this, std::move(request)));
|
|
|