| Index: content/renderer/browser_plugin/browser_plugin.h
|
| diff --git a/content/renderer/browser_plugin/browser_plugin.h b/content/renderer/browser_plugin/browser_plugin.h
|
| index 45ae96d09a691c0183cc628fcfa455306bd19031..01dc5ddd938c5973e913f8709376fec4d3faeba4 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.h
|
| +++ b/content/renderer/browser_plugin/browser_plugin.h
|
| @@ -52,10 +52,13 @@ class CONTENT_EXPORT BrowserPlugin :
|
| const BrowserPluginMsg_UpdateRect_Params& params);
|
| // Inform the BrowserPlugin that its guest has crashed.
|
| void GuestCrashed();
|
| - // Informs the BrowserPlugin that the guest has navigated to a new URL.
|
| - void DidNavigate(const GURL& url, int process_id);
|
| +
|
| // Inform the BrowserPlugin that the guest has started loading a new page.
|
| void LoadStart(const GURL& url, bool is_top_level);
|
| + // Inform the BrowserPlugin that the guest has navigated to a new URL.
|
| + void LoadCommit(const GURL& url, int process_id, bool is_top_level);
|
| + // Inform the BrowserPlugin that the guest has finished loading a new page.
|
| + void LoadStop();
|
| // Inform the BrowserPlugin that the guest has aborted loading a new page.
|
| void LoadAbort(const GURL& url, bool is_top_level, const std::string& type);
|
| // Inform the BrowserPlugin that the guest has redirected a navigation.
|
|
|