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

Unified Diff: content/child/background_sync/background_sync_type_converters.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/child/background_sync/background_sync_type_converters.h
diff --git a/content/child/background_sync/background_sync_type_converters.h b/content/child/background_sync/background_sync_type_converters.h
index fc9f59a86229f1f09aa4494d8321e800ef8913c9..952d50d0c1c32d7dad988f0f5009502d6638ea5d 100644
--- a/content/child/background_sync/background_sync_type_converters.h
+++ b/content/child/background_sync/background_sync_type_converters.h
@@ -7,66 +7,65 @@
#include <memory>
-#include "content/common/background_sync_service.mojom.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/type_converter.h"
#include "third_party/WebKit/public/platform/modules/background_sync/WebSyncError.h"
#include "third_party/WebKit/public/platform/modules/background_sync/WebSyncRegistration.h"
+#include "third_party/WebKit/public/platform/modules/background_sync/background_sync.mojom.h"
#include "third_party/WebKit/public/web/modules/serviceworker/WebServiceWorkerContextProxy.h"
namespace mojo {
// blink::WebSyncRegistration::NetworkState <=>
-// content::mojom::BackgroundSyncNetworkState
+// blink::mojom::BackgroundSyncNetworkState
template <>
-struct CONTENT_EXPORT
- TypeConverter<blink::WebSyncRegistration::NetworkState,
- content::mojom::BackgroundSyncNetworkState> {
+struct CONTENT_EXPORT TypeConverter<blink::WebSyncRegistration::NetworkState,
+ blink::mojom::BackgroundSyncNetworkState> {
static blink::WebSyncRegistration::NetworkState Convert(
- content::mojom::BackgroundSyncNetworkState input);
+ blink::mojom::BackgroundSyncNetworkState input);
};
template <>
-struct CONTENT_EXPORT TypeConverter<content::mojom::BackgroundSyncNetworkState,
+struct CONTENT_EXPORT TypeConverter<blink::mojom::BackgroundSyncNetworkState,
blink::WebSyncRegistration::NetworkState> {
- static content::mojom::BackgroundSyncNetworkState Convert(
+ static blink::mojom::BackgroundSyncNetworkState Convert(
blink::WebSyncRegistration::NetworkState input);
};
// blink::WebSyncRegistration <=>
-// content::mojom::SyncRegistration
+// blink::mojom::SyncRegistration
template <>
struct CONTENT_EXPORT TypeConverter<std::unique_ptr<blink::WebSyncRegistration>,
- content::mojom::SyncRegistrationPtr> {
+ blink::mojom::SyncRegistrationPtr> {
static std::unique_ptr<blink::WebSyncRegistration> Convert(
- const content::mojom::SyncRegistrationPtr& input);
+ const blink::mojom::SyncRegistrationPtr& input);
};
template <>
-struct CONTENT_EXPORT TypeConverter<content::mojom::SyncRegistrationPtr,
+struct CONTENT_EXPORT TypeConverter<blink::mojom::SyncRegistrationPtr,
blink::WebSyncRegistration> {
- static content::mojom::SyncRegistrationPtr Convert(
+ static blink::mojom::SyncRegistrationPtr Convert(
const blink::WebSyncRegistration& input);
};
// blink::WebServiceWorkerContextProxy::LastChanceOption <=>
-// content::mojom::BackgroundSyncEventLastChance
+// blink::mojom::BackgroundSyncEventLastChance
template <>
struct CONTENT_EXPORT
TypeConverter<blink::WebServiceWorkerContextProxy::LastChanceOption,
- content::mojom::BackgroundSyncEventLastChance> {
+ blink::mojom::BackgroundSyncEventLastChance> {
static blink::WebServiceWorkerContextProxy::LastChanceOption Convert(
- content::mojom::BackgroundSyncEventLastChance input);
+ blink::mojom::BackgroundSyncEventLastChance input);
};
template <>
struct CONTENT_EXPORT
- TypeConverter<content::mojom::BackgroundSyncEventLastChance,
+ TypeConverter<blink::mojom::BackgroundSyncEventLastChance,
blink::WebServiceWorkerContextProxy::LastChanceOption> {
- static content::mojom::BackgroundSyncEventLastChance Convert(
+ static blink::mojom::BackgroundSyncEventLastChance Convert(
blink::WebServiceWorkerContextProxy::LastChanceOption input);
};

Powered by Google App Engine
This is Rietveld 408576698