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

Unified Diff: content/renderer/render_frame_impl.h

Issue 2690203003: Convert push_messaging IPC msgs into mojo interfaces (Closed)
Patch Set: code rebase Created 3 years, 10 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/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index dcb01d74cb897c1f1402a3737be2771b3b973f05..122220dfee62a37a7211707dc8f57244dec0c908 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -145,7 +145,7 @@ class MediaPermissionDispatcher;
class NavigationState;
class PepperPluginInstanceImpl;
class PresentationDispatcher;
-class PushMessagingDispatcher;
+class PushMessagingClient;
class RelatedAppsFetcher;
class RenderAccessibilityImpl;
class RendererMediaPlayerManager;
@@ -1281,13 +1281,13 @@ class CONTENT_EXPORT RenderFrameImpl
// local roots.
DevToolsAgent* devtools_agent_;
- // The push messaging dispatcher attached to this frame, lazily initialized.
- PushMessagingDispatcher* push_messaging_dispatcher_;
-
// The presentation dispatcher implementation attached to this frame, lazily
// initialized.
PresentationDispatcher* presentation_dispatcher_;
+ // The PushMessagingClient attached to this frame, lazily initialized.
+ PushMessagingClient* push_messaging_client_;
+
std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_;
std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_;
std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;

Powered by Google App Engine
This is Rietveld 408576698