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

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: 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/child_thread.h
diff --git a/content/child/child_thread.h b/content/child/child_thread.h
index c718000cfe57ffd1ac37c9bc82999ea00958d348..313cfffb75a408ef32c730268e07c2a8a0e04e3c 100644
--- a/content/child/child_thread.h
+++ b/content/child/child_thread.h
@@ -42,6 +42,7 @@ class ChildResourceMessageFilter;
class ChildSharedBitmapManager;
class FileSystemDispatcher;
class GeofencingMessageFilter;
+class NotificationDispatcher;
class ServiceWorkerMessageFilter;
class QuotaDispatcher;
class QuotaMessageFilter;
@@ -122,6 +123,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();
}
@@ -245,6 +250,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_;

Powered by Google App Engine
This is Rietveld 408576698