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

Unified Diff: content/public/browser/render_frame_host.h

Issue 26316005: Move out DidStartProvisionalLoad from WebContentsImpl into Navigator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add NavigatorDelegate Created 7 years, 1 month 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/public/browser/render_frame_host.h
diff --git a/content/public/browser/render_frame_host.h b/content/public/browser/render_frame_host.h
index 9b6344f3bae54ec65a6bffd35bc7e62a51d92871..6a563895fc2acc1c982ddeaab1210c6a1cafa917 100644
--- a/content/public/browser/render_frame_host.h
+++ b/content/public/browser/render_frame_host.h
@@ -11,12 +11,19 @@
namespace content {
+class RenderProcessHost;
+class SiteInstance;
+
// The interface provides a communication conduit with a frame in the renderer.
class CONTENT_EXPORT RenderFrameHost : public IPC::Listener,
public IPC::Sender {
public:
virtual ~RenderFrameHost() {}
+ virtual RenderProcessHost* GetProcess() const = 0;
Charlie Reis 2013/11/07 01:22:43 Do we need this? You can get the process from the
+
+ virtual SiteInstance* GetSiteInstance() const = 0;
+
private:
// This interface should only be implemented inside content.
friend class RenderFrameHostImpl;
« content/browser/web_contents/web_contents_impl.cc ('K') | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698