| Index: content/browser/browser_plugin/browser_plugin_guest.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| index 0c51bacb3808c52520e5f5f03eddb448afd8b171..7c1105b6e9b7051753c57e64d0a89e7d508441aa 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| @@ -426,7 +426,7 @@ void BrowserPluginGuest::DidCommitProvisionalLoadForFrame(
|
| PageTransition transition_type,
|
| RenderViewHost* render_view_host) {
|
| // Inform its embedder of the updated URL.
|
| - BrowserPluginMsg_DidNavigate_Params params;
|
| + BrowserPluginMsg_LoadCommit_Params params;
|
| params.url = url;
|
| params.is_top_level = is_main_frame;
|
| params.process_id = render_view_host->GetProcess()->GetID();
|
| @@ -435,10 +435,14 @@ void BrowserPluginGuest::DidCommitProvisionalLoadForFrame(
|
| params.entry_count =
|
| web_contents()->GetController().GetEntryCount();
|
| SendMessageToEmbedder(
|
| - new BrowserPluginMsg_DidNavigate(instance_id(), params));
|
| + new BrowserPluginMsg_LoadCommit(instance_id(), params));
|
| RecordAction(UserMetricsAction("BrowserPlugin.Guest.DidNavigate"));
|
| }
|
|
|
| +void BrowserPluginGuest::DidStopLoading(RenderViewHost* render_view_host) {
|
| + SendMessageToEmbedder(new BrowserPluginMsg_LoadStop(instance_id()));
|
| +}
|
| +
|
| void BrowserPluginGuest::RenderViewGone(base::TerminationStatus status) {
|
| if (pending_input_event_reply_.get()) {
|
| IPC::Message* reply_message = pending_input_event_reply_.release();
|
|
|