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

Unified Diff: content/browser/browser_plugin/browser_plugin_host_helper.cc

Issue 10412056: Browser Plugin: Remove MapInstance from BrowserPluginHost + More cross-process navigation work (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Additional small fix to visitedlink (forgot to change one CreateRenderView call) 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/browser/browser_plugin/browser_plugin_host_helper.cc
diff --git a/content/browser/browser_plugin/browser_plugin_host_helper.cc b/content/browser/browser_plugin/browser_plugin_host_helper.cc
index d45d423ed97a17552c3d75a505dc6a74d076c69f..d7bd97380e81ddffbbc2af32750f4fd14461357d 100644
--- a/content/browser/browser_plugin/browser_plugin_host_helper.cc
+++ b/content/browser/browser_plugin/browser_plugin_host_helper.cc
@@ -46,14 +46,12 @@ void BrowserPluginHostHelper::OnConnectToChannel(
void BrowserPluginHostHelper::OnNavigateGuestFromEmbedder(
int32 instance_id,
long long frame_id,
- const std::string& src,
- const gfx::Size& size) {
+ const std::string& src) {
browser_plugin_host_->NavigateGuestFromEmbedder(
render_view_host(),
instance_id,
frame_id,
- src,
- size);
+ src);
}
void BrowserPluginHostHelper::OnResizeGuest(int width, int height) {
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_host_helper.h ('k') | content/browser/renderer_host/render_view_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698