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

Unified Diff: content/child/blink_platform_impl.h

Issue 1104283002: [Background Sync] Add renderer code to interface between JS API and back-end service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bgsync-mojo
Patch Set: Better scoped_ptr construction (nit) Created 5 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/blink_platform_impl.h
diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h
index 5f7e120afa499e21afbc9e52260e817b65b54e30..8ca60eae4f68e4fac82e1e9e76b75020aa942acc 100644
--- a/content/child/blink_platform_impl.h
+++ b/content/child/blink_platform_impl.h
@@ -33,6 +33,7 @@ class MessageLoop;
}
namespace content {
+class BackgroundSyncProvider;
class FlingCurveConfiguration;
class NotificationDispatcher;
class PermissionDispatcher;
@@ -167,6 +168,7 @@ class CONTENT_EXPORT BlinkPlatformImpl
virtual blink::WebPushProvider* pushProvider();
virtual blink::WebNavigatorConnectProvider* navigatorConnectProvider();
virtual blink::WebPermissionClient* permissionClient();
+ virtual blink::WebSyncProvider* backgroundSyncProvider();
void SuspendSharedTimer();
void ResumeSharedTimer();
@@ -210,6 +212,7 @@ class CONTENT_EXPORT BlinkPlatformImpl
scoped_refptr<NotificationDispatcher> notification_dispatcher_;
scoped_refptr<PushDispatcher> push_dispatcher_;
scoped_ptr<PermissionDispatcher> permission_client_;
+ scoped_ptr<BackgroundSyncProvider> sync_provider_;
};
} // namespace content
« no previous file with comments | « content/child/background_sync/background_sync_provider_thread_proxy.cc ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698