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

Unified Diff: content/child/blink_platform_impl.h

Issue 644643005: Implement a RenderFrame-less path for Web Notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove now unused ipc messages Created 6 years, 2 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 4a3c7b8fe8071ce52d31b4586530fc3c5ecbf668..9736d6765192eb7efe2dbc0bec070346ee04ea17 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;
@@ -155,6 +157,7 @@ class CONTENT_EXPORT BlinkPlatformImpl
const blink::WebWorkerRunLoop& runLoop) override;
virtual blink::WebCrypto* crypto() override;
virtual blink::WebGeofencingProvider* geofencingProvider() override;
Mike West 2014/10/24 13:20:18 Not-your-nit: We should drop these 'override' decl
Peter Beverloo 2014/10/24 13:57:35 https://codereview.chromium.org/679523004/
+ virtual blink::WebNotificationManager* notificationManager();
void SuspendSharedTimer();
void ResumeSharedTimer();
@@ -179,6 +182,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

Powered by Google App Engine
This is Rietveld 408576698