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

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

Issue 1960843002: [OnionSoup] Move background_sync.mojom from //content to //third_party/WebKit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address dcheng@'s comment Created 4 years, 7 months 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_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)));
« no previous file with comments | « content/browser/background_sync/background_sync_context.h ('k') | content/browser/background_sync/background_sync_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698