| Index: content/browser/browser_plugin/browser_plugin_guest.h
|
| diff --git a/content/browser/browser_plugin/browser_plugin_guest.h b/content/browser/browser_plugin/browser_plugin_guest.h
|
| index 27d438b9988cac97b5aae44ae6408a5a7ec4a519..b8d9f705f17ceb5e3bb1e9998ba74cae17fb3749 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.h
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.h
|
| @@ -137,6 +137,8 @@ class CONTENT_EXPORT BrowserPluginGuest : public WebContentsDelegate,
|
| // Handles input event acks so they are sent to browser plugin host (via
|
| // embedder) instead of default view/widget host.
|
| void HandleInputEventAck(RenderViewHost* render_view_host, bool handled);
|
| + // Reload the guest.
|
| + void Reload();
|
|
|
| // Helper to send messages to embedder. Overridden in test implementation
|
| // since we want to intercept certain messages for testing.
|
| @@ -145,6 +147,8 @@ class CONTENT_EXPORT BrowserPluginGuest : public WebContentsDelegate,
|
| virtual void SetFocus(bool focused);
|
| // Overridden in tests.
|
| virtual bool ViewTakeFocus(bool reverse);
|
| + // Stop loading the guest.
|
| + virtual void Stop();
|
|
|
| // Static factory instance (always NULL for non-test).
|
| static content::BrowserPluginHostFactory* factory_;
|
|
|