| Index: content/browser/renderer_host/render_view_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
|
| index 4b33cc01dc83f1fd0c1dd012f537852b4417e622..c4186678a9fc1e29d6f850a3d5582abb16a85868 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -198,6 +198,7 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| virtual void NotifyMoveOrResizeStarted() OVERRIDE;
|
| virtual void ReloadFrame() OVERRIDE;
|
| virtual void SetAltErrorPageURL(const GURL& url) OVERRIDE;
|
| + virtual void SetName(const std::string& name) OVERRIDE;
|
| virtual void SetWebUIProperty(const std::string& name,
|
| const std::string& value) OVERRIDE;
|
| virtual void SetZoomLevel(double level) OVERRIDE;
|
| @@ -559,6 +560,9 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| void OnDomOperationResponse(const std::string& json_string,
|
| int automation_id);
|
| void OnFrameTreeUpdated(const std::string& frame_tree);
|
| + void OnUpdateFrameName(int frame_id,
|
| + bool is_top_level,
|
| + const std::string& name);
|
| void OnGetWindowSnapshot(const int snapshot_id);
|
|
|
| #if defined(OS_MACOSX) || defined(OS_ANDROID)
|
|
|