Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1253)

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 182713005: Remove frame ID from DidCommitProvisionalLoad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698