| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 2ae0e9d8c4e99de20cae2fdd51c7f30f1275a50d..3f09f88c48fd3b069a04573fa37bed837706794f 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -60,6 +60,7 @@ class ExternalPopupMenu;
|
| class GeolocationDispatcher;
|
| class GURL;
|
| class IntentsDispatcher;
|
| +class JavaBridgeDispatcher;
|
| class LoadProgressTracker;
|
| class MediaStreamImpl;
|
| class NotificationProvider;
|
| @@ -858,6 +859,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.
|
|
|
| @@ -1150,6 +1153,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
|
|
|