Index: content/child/blink_platform_impl.h |
diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h |
index 2554577a54fa5e69df80021d6470e7981bc75e7e..785b0d6418ab422953d6398df517f5bdf7c914c1 100644 |
--- a/content/child/blink_platform_impl.h |
+++ b/content/child/blink_platform_impl.h |
@@ -33,6 +33,8 @@ class MessageLoop; |
namespace content { |
class FlingCurveConfiguration; |
+class NotificationDispatcher; |
+class ThreadSafeSender; |
class WebCryptoImpl; |
class WebGeofencingProviderImpl; |
@@ -154,6 +156,7 @@ class CONTENT_EXPORT BlinkPlatformImpl |
const blink::WebWorkerRunLoop& runLoop); |
virtual blink::WebCrypto* crypto(); |
virtual blink::WebGeofencingProvider* geofencingProvider(); |
+ virtual blink::WebNotificationManager* notificationManager(); |
void SuspendSharedTimer(); |
void ResumeSharedTimer(); |
@@ -178,6 +181,9 @@ class CONTENT_EXPORT BlinkPlatformImpl |
base::ThreadLocalStorage::Slot current_thread_slot_; |
WebCryptoImpl web_crypto_; |
scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; |
+ |
+ scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
+ scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
}; |
} // namespace content |