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

Unified Diff: content/renderer/render_view_impl.h

Issue 8347005: Adds the renderer component of the Java Bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 9 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
« no previous file with comments | « content/renderer/java_bridge_dispatcher.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/renderer/java_bridge_dispatcher.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698