Chromium Code Reviews| Index: content/child/blink_platform_impl.h |
| diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h |
| index 5ee5049dac0819ef8ddd4f3dd954c309d2ef68e4..537098feca97539955530e1608bf78b0b4d2eb9b 100644 |
| --- a/content/child/blink_platform_impl.h |
| +++ b/content/child/blink_platform_impl.h |
| @@ -43,7 +43,8 @@ class WebThreadBase; |
| } |
| namespace content { |
| -class BackgroundSyncProvider; |
| + |
| +class FlingCurveConfiguration; |
|
dcheng
2016/11/08 07:23:12
Introduced accidentally by a rebase?
adithyas
2016/11/08 16:47:47
Yup, removed it :)
|
| class NotificationDispatcher; |
| class PushDispatcher; |
| class ThreadSafeSender; |
| @@ -113,7 +114,6 @@ class CONTENT_EXPORT BlinkPlatformImpl |
| blink::WebCrypto* crypto() override; |
| blink::WebNotificationManager* notificationManager() override; |
| blink::WebPushProvider* pushProvider() override; |
| - blink::WebSyncProvider* backgroundSyncProvider() override; |
| blink::WebString domCodeStringFromEnum(int dom_code) override; |
| int domEnumFromCodeString(const blink::WebString& codeString) override; |
| @@ -141,7 +141,6 @@ class CONTENT_EXPORT BlinkPlatformImpl |
| scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
| scoped_refptr<PushDispatcher> push_dispatcher_; |
| - std::unique_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
| blink::scheduler::WebThreadBase* compositor_thread_; |
| }; |