| Index: content/browser/frame_host/render_frame_host_impl.h
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
|
| index 09ad7442185db25fdb48b9e10c49241da582a257..485eb82f7f92be104949f63a8ddef1106399cb95 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -38,18 +38,19 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost {
|
| virtual ~RenderFrameHostImpl();
|
|
|
| // RenderFrameHost
|
| - virtual SiteInstance* GetSiteInstance() OVERRIDE;
|
| - virtual RenderProcessHost* GetProcess() OVERRIDE;
|
| - virtual int GetRoutingID() OVERRIDE;
|
| - virtual RenderFrameHost* GetParent() OVERRIDE;
|
| - virtual bool IsCrossProcessSubframe() OVERRIDE;
|
| - virtual GURL GetLastCommittedURL() OVERRIDE;
|
| - virtual gfx::NativeView GetNativeView() OVERRIDE;
|
| + virtual int GetRoutingID() const OVERRIDE;
|
| + virtual SiteInstance* GetSiteInstance() const OVERRIDE;
|
| + virtual int GetEnabledBindings() const OVERRIDE;
|
| + virtual RenderProcessHost* GetProcess() const OVERRIDE;
|
| + virtual RenderFrameHost* GetParent() const OVERRIDE;
|
| + virtual bool IsCrossProcessSubframe() const OVERRIDE;
|
| + virtual GURL GetLastCommittedURL() const OVERRIDE;
|
| + virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
| virtual void NotifyContextMenuClosed(
|
| const CustomContextMenuContext& context) OVERRIDE;
|
| virtual void ExecuteCustomContextMenuCommand(
|
| int action, const CustomContextMenuContext& context) OVERRIDE;
|
| - virtual RenderViewHost* GetRenderViewHost() OVERRIDE;
|
| + virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
|
|
|
| // IPC::Sender
|
| virtual bool Send(IPC::Message* msg) OVERRIDE;
|
|
|