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

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

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.h
diff --git a/content/browser/background_sync/background_sync_context.h b/content/browser/background_sync/background_sync_context.h
index fbff463acdb8534c0e0e06fcd3961442fa87a8d0..9f2c986c15dddacef99bdbc010b7bc5cdaa2ab66 100644
--- a/content/browser/background_sync/background_sync_context.h
+++ b/content/browser/background_sync/background_sync_context.h
@@ -10,8 +10,8 @@
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "content/common/background_sync_service.mojom.h"
#include "content/common/content_export.h"
+#include "third_party/WebKit/public/platform/modules/background_sync/background_sync.mojom.h"
namespace content {
@@ -37,7 +37,7 @@ class CONTENT_EXPORT BackgroundSyncContext
// Create a BackgroundSyncServiceImpl that is owned by this. Call on the UI
// thread.
void CreateService(
- mojo::InterfaceRequest<mojom::BackgroundSyncService> request);
+ mojo::InterfaceRequest<blink::mojom::BackgroundSyncService> request);
// Called by BackgroundSyncServiceImpl objects so that they can
// be deleted. Call on the IO thread.
@@ -60,7 +60,7 @@ class CONTENT_EXPORT BackgroundSyncContext
scoped_refptr<ServiceWorkerContextWrapper> context);
void CreateServiceOnIOThread(
- mojo::InterfaceRequest<mojom::BackgroundSyncService> request);
+ mojo::InterfaceRequest<blink::mojom::BackgroundSyncService> request);
void ShutdownOnIO();

Powered by Google App Engine
This is Rietveld 408576698