| 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) {
|
|
|