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

Unified Diff: content/public/browser/render_view_host_delegate.h

Issue 10377170: Browser Plugin: browser process side changes (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Updated according to creis@ Created 8 years, 7 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/public/browser/render_view_host_delegate.h
diff --git a/content/public/browser/render_view_host_delegate.h b/content/public/browser/render_view_host_delegate.h
index ec2427939c1390869aa4a2ec2bdc34cead9b2053..807ff1862132791b4103e71651e4968e98a11274 100644
--- a/content/public/browser/render_view_host_delegate.h
+++ b/content/public/browser/render_view_host_delegate.h
@@ -428,6 +428,19 @@ class CONTENT_EXPORT RenderViewHostDelegate : public IPC::Channel::Listener {
// Notification that the view has lost the mouse lock.
virtual void LostMouseLock() {}
+ // The Browser Plugin guest has created a channel handle, and requests that
+ // the browser process relay the channel handle to the embedder so that it
+ // can connect to it.
+ virtual void ConnectEmbedderToChannel(
+ RenderViewHost* render_view_host,
+ const IPC::ChannelHandle& channel_handle) {}
+
+ // The Browser Plugin embedder has requested that the guest should navigate.
+ virtual void NavigateGuestFromEmbedder(RenderViewHost* render_view_host,
+ int container_instance_id,
+ long long frame_id,
+ const std::string& src,
+ const gfx::Size& size) {}
protected:
virtual ~RenderViewHostDelegate() {}
};
« content/browser/browser_plugin/browser_plugin_host.h ('K') | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698