diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-06 12:43:20 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-06 12:43:20 +0000 |
commit | e232c994217b5d29a8cbdd98cdf81041a1db7c6f (patch) | |
tree | 0c295b7eb99a9964b9203329404ac5559596c51e /chrome/browser/ui/browser_navigator_browsertest.h | |
parent | 01a0026b14dc7943c2000bcc5a21225a69ed519f (diff) | |
download | chromium_src-e232c994217b5d29a8cbdd98cdf81041a1db7c6f.zip chromium_src-e232c994217b5d29a8cbdd98cdf81041a1db7c6f.tar.gz chromium_src-e232c994217b5d29a8cbdd98cdf81041a1db7c6f.tar.bz2 |
Remove TabContents from chrome::Navigate.
BUG=107201
TEST=no visible change
Review URL: https://chromiumcodereview.appspot.com/11419235
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171472 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_navigator_browsertest.h')
-rw-r--r-- | chrome/browser/ui/browser_navigator_browsertest.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser_navigator_browsertest.h b/chrome/browser/ui/browser_navigator_browsertest.h index 2a10152..4fbf814 100644 --- a/chrome/browser/ui/browser_navigator_browsertest.h +++ b/chrome/browser/ui/browser_navigator_browsertest.h @@ -10,12 +10,15 @@ #include "content/public/browser/notification_types.h" class Profile; -class TabContents; namespace chrome { struct NavigateParams; } +namespace content { +class WebContents; +} + // Browsertest class for testing the browser navigation. It is also a base class // for the |BrowserGuestModeNavigation| which tests navigation while in guest // mode. @@ -28,7 +31,7 @@ class BrowserNavigatorTest : public InProcessBrowserTest, Browser* CreateEmptyBrowserForType(Browser::Type type, Profile* profile); Browser* CreateEmptyBrowserForApp(Browser::Type type, Profile* profile); - TabContents* CreateTabContents(); + content::WebContents* CreateWebContents(); void RunSuppressTest(WindowOpenDisposition disposition); void RunUseNonIncognitoWindowTest(const GURL& url); |