| 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 5df45b493e683915e8a4936074d7d5f6c81ac5f4..8024e0c593349e3402c969e705ebdd65409d0576 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.h
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.h
|
| @@ -155,7 +155,10 @@ class CONTENT_EXPORT BrowserPluginGuest : public NotificationObserver,
|
| PageTransition transition_type,
|
| RenderViewHost* render_view_host) OVERRIDE;
|
| virtual void DidStopLoading(RenderViewHost* render_view_host) OVERRIDE;
|
| -
|
| + virtual void DidUpdateFrameName(int frame_id,
|
| + bool is_top_level,
|
| + const std::string& name,
|
| + RenderViewHost* render_view_host) OVERRIDE;
|
| virtual void RenderViewReady() OVERRIDE;
|
| virtual void RenderViewGone(base::TerminationStatus status) OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| @@ -377,9 +380,6 @@ class CONTENT_EXPORT BrowserPluginGuest : public NotificationObserver,
|
| // Overriden in tests.
|
| virtual void OnTakeFocus(bool reverse);
|
| void OnUpdateDragCursor(WebKit::WebDragOperation operation);
|
| - void OnUpdateFrameName(int frame_id,
|
| - bool is_top_level,
|
| - const std::string& name);
|
| void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params);
|
|
|
| // Helpers for |OnRespondPermission|.
|
|
|