Index: content/browser/frame_host/render_frame_host_impl.h |
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h |
index 8b275095cde371d47a7f685882c021fd138cec43..1af7339f892c97b51de8af52821dbac5bc7d901f 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.h |
+++ b/content/browser/frame_host/render_frame_host_impl.h |
@@ -69,7 +69,7 @@ class WebBluetoothService; |
} |
namespace content { |
- |
+class AppWebMessagePortMessageFilter; |
class AssociatedInterfaceProviderImpl; |
class CrossProcessFrameConnector; |
class CrossSiteTransferringRequest; |
@@ -295,6 +295,11 @@ class CONTENT_EXPORT RenderFrameHostImpl |
GlobalFrameRoutingId GetGlobalFrameRoutingId(); |
+#if defined(OS_ANDROID) |
+ scoped_refptr<AppWebMessagePortMessageFilter> |
+ GetAppWebMessagePortMessageFilter(int routing_id); |
+#endif |
+ |
// This function is called when this is a swapped out RenderFrameHost that |
// lives in the same process as the parent frame. The |
// |cross_process_frame_connector| allows the non-swapped-out |
@@ -973,6 +978,12 @@ class CONTENT_EXPORT RenderFrameHostImpl |
std::unique_ptr<shell::InterfaceRegistry> interface_registry_; |
std::unique_ptr<shell::InterfaceProvider> remote_interfaces_; |
+#if defined(OS_ANDROID) |
+ // The filter for MessagePort messages between an Android apps and web. |
+ scoped_refptr<AppWebMessagePortMessageFilter> |
+ app_web_message_port_message_filter_; |
+#endif |
+ |
std::unique_ptr<WebBluetoothServiceImpl> web_bluetooth_service_; |
// The object managing the accessibility tree for this frame. |
@@ -1057,6 +1068,7 @@ class CONTENT_EXPORT RenderFrameHostImpl |
std::unique_ptr<AssociatedInterfaceProviderImpl> |
remote_associated_interfaces_; |
+ |
Robert Sesek
2016/10/11 15:44:33
extra blank line
Yusuf
2016/10/11 16:48:47
Done.
|
// NOTE: This must be the last member. |
base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |