| 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 c1587c1b64e2208cf65ad77c4777cafe480ab4cd..4df49959930d02693fc252b3b2bd43a407285898 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -186,6 +186,9 @@ class CONTENT_EXPORT WebContentsImpl
|
| virtual NavigationControllerImpl& GetController() OVERRIDE;
|
| virtual const NavigationControllerImpl& GetController() const OVERRIDE;
|
| virtual BrowserContext* GetBrowserContext() const OVERRIDE;
|
| + virtual const GURL& GetURL() const OVERRIDE;
|
| + virtual const GURL& GetVisibleURL() const OVERRIDE;
|
| + virtual const GURL& GetLastCommittedURL() const OVERRIDE;
|
| virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE;
|
| virtual RenderFrameHost* GetMainFrame() OVERRIDE;
|
| virtual RenderFrameHost* GetFocusedFrame() OVERRIDE;
|
| @@ -302,6 +305,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| // RenderFrameHostDelegate ---------------------------------------------------
|
| virtual bool OnMessageReceived(RenderFrameHost* render_frame_host,
|
| const IPC::Message& message) OVERRIDE;
|
| + virtual const GURL& GetMainFrameVisibleURL() const;
|
| virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE;
|
| virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE;
|
| virtual void DidStartLoading(RenderFrameHost* render_frame_host,
|
| @@ -317,9 +321,6 @@ class CONTENT_EXPORT WebContentsImpl
|
| virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE;
|
| virtual bool OnMessageReceived(RenderViewHost* render_view_host,
|
| const IPC::Message& message) OVERRIDE;
|
| - virtual const GURL& GetURL() const OVERRIDE;
|
| - virtual const GURL& GetVisibleURL() const OVERRIDE;
|
| - virtual const GURL& GetLastCommittedURL() const OVERRIDE;
|
| // RenderFrameHostDelegate has the same method, so list it there because this
|
| // interface is going away.
|
| // virtual WebContents* GetAsWebContents() OVERRIDE;
|
|
|