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

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: add OWNERS file 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
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698