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

Unified Diff: content/child/child_thread.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/child/blink_platform_impl.cc ('k') | content/child/child_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_thread.h
diff --git a/content/child/child_thread.h b/content/child/child_thread.h
index e1a5b856c208e151dfd1598d80c26c2c43d51414..969194e8a3ffb455936808fe231e465778ba7dd9 100644
--- a/content/child/child_thread.h
+++ b/content/child/child_thread.h
@@ -43,6 +43,7 @@ class ChildResourceMessageFilter;
class ChildSharedBitmapManager;
class FileSystemDispatcher;
class GeofencingMessageFilter;
+class NotificationDispatcher;
class ServiceWorkerMessageFilter;
class QuotaDispatcher;
class QuotaMessageFilter;
@@ -123,6 +124,10 @@ class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender {
return quota_dispatcher_.get();
}
+ NotificationDispatcher* notification_dispatcher() const {
+ return notification_dispatcher_.get();
+ }
+
IPC::SyncMessageFilter* sync_message_filter() const {
return sync_message_filter_.get();
}
@@ -243,6 +248,8 @@ class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender {
scoped_refptr<QuotaMessageFilter> quota_message_filter_;
+ scoped_refptr<NotificationDispatcher> notification_dispatcher_;
+
scoped_ptr<ChildSharedBitmapManager> shared_bitmap_manager_;
scoped_ptr<ChildGpuMemoryBufferManager> gpu_memory_buffer_manager_;
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | content/child/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698