| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index da6cd9b9e6f1ff74e752f34f5e5dc93385236718..3140887470850d2a7196d6c9e5bb076d6b96e059 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -61,6 +61,7 @@ class ExternalPopupMenu;
|
| class GeolocationDispatcher;
|
| class GURL;
|
| class IntentsDispatcher;
|
| +class JavaBridgeDispatcher;
|
| class LoadProgressTracker;
|
| class MediaStreamImpl;
|
| class NotificationProvider;
|
| @@ -866,6 +867,8 @@ class RenderViewImpl : public RenderWidget,
|
| void OnZoom(PageZoom::Function function);
|
| void OnEnableViewSourceMode();
|
|
|
| + void OnJavaBridgeInit(const IPC::ChannelHandle& channel_handle);
|
| +
|
| // Adding a new message handler? Please add it in alphabetical order above
|
| // and put it in the same position in the .cc file.
|
|
|
| @@ -1158,6 +1161,9 @@ class RenderViewImpl : public RenderWidget,
|
|
|
| RendererAccessibility* renderer_accessibility_;
|
|
|
| + // Java Bridge dispatcher attached to this view; lazily initialized.
|
| + scoped_ptr<JavaBridgeDispatcher> java_bridge_dispatcher_;
|
| +
|
| // Misc ----------------------------------------------------------------------
|
|
|
| // The current and pending file chooser completion objects. If the queue is
|
|
|