| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index 268749e5071c3446acea63a52b8248ac3c6fa0b8..640275896ddb6f26844af0934efe6f7234fee499 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -175,6 +175,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| virtual const GURL& GetLastCommittedURL() const OVERRIDE;
|
| virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE;
|
| virtual RenderFrameHost* GetMainFrame() OVERRIDE;
|
| + virtual void SetMainFrameName(const std::string& name) OVERRIDE;
|
| virtual RenderFrameHost* GetFocusedFrame() OVERRIDE;
|
| virtual void ForEachFrame(
|
| const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE;
|
| @@ -762,6 +763,9 @@ class CONTENT_EXPORT WebContentsImpl
|
| const base::string16& sub_text);
|
| void OnHideValidationMessage();
|
| void OnMoveValidationMessage(const gfx::Rect& anchor_in_root_view);
|
| + void OnUpdateFrameName(int render_frame_id,
|
| + bool is_top_level,
|
| + const std::string& name);
|
|
|
|
|
| // Called by derived classes to indicate that we're no longer waiting for a
|
|
|