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

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

Issue 8983010: Convert WebContents to return a content::NavigationController instead of the implementation. Upda... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 12 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/public/browser/web_contents.h
===================================================================
--- content/public/browser/web_contents.h (revision 116232)
+++ content/public/browser/web_contents.h (working copy)
@@ -18,7 +18,6 @@
#include "webkit/glue/window_open_disposition.h"
class InterstitialPage;
-class NavigationController;
class RenderViewHost;
class RenderViewHostManager;
class RenderWidgetHostView;
@@ -44,6 +43,7 @@
namespace content {
class BrowserContext;
+class NavigationController;
class RenderProcessHost;
class WebContentsDelegate;
struct RendererPreferences;
@@ -81,8 +81,8 @@
virtual void SetDelegate(WebContentsDelegate* delegate) = 0;
// Gets the controller for this tab contents.
- virtual ::NavigationController& GetController() = 0;
- virtual const ::NavigationController& GetController() const = 0;
+ virtual NavigationController& GetController() = 0;
+ virtual const NavigationController& GetController() const = 0;
// Returns the user browser context associated with this WebContents (via the
// NavigationController).

Powered by Google App Engine
This is Rietveld 408576698