diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-13 03:51:58 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-13 03:51:58 +0000 |
commit | 2905f74ce902dbf21dcbbf7ed3537f803f027630 (patch) | |
tree | 0371f49d1768902bf69e0130b55ec104258f5cf9 /chrome/test/base/in_process_browser_test.h | |
parent | 49098f7091448e437190f23cc67a705df4abd079 (diff) | |
download | chromium_src-2905f74ce902dbf21dcbbf7ed3537f803f027630.zip chromium_src-2905f74ce902dbf21dcbbf7ed3537f803f027630.tar.gz chromium_src-2905f74ce902dbf21dcbbf7ed3537f803f027630.tar.bz2 |
Move PageTransition into content namespace. While I'm touching all these files, I've also updated it to use the enum naming convention in the Content API.
BUG=98716
Review URL: http://codereview.chromium.org/8253002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105254 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/base/in_process_browser_test.h')
-rw-r--r-- | chrome/test/base/in_process_browser_test.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/test/base/in_process_browser_test.h b/chrome/test/base/in_process_browser_test.h index af8860d..cad8b28 100644 --- a/chrome/test/base/in_process_browser_test.h +++ b/chrome/test/base/in_process_browser_test.h @@ -10,7 +10,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/scoped_temp_dir.h" -#include "content/common/page_transition_types.h" +#include "content/public/common/page_transition_types.h" #include "content/test/browser_test.h" #include "content/test/browser_test_base.h" #include "net/test/test_server.h" @@ -92,12 +92,12 @@ class InProcessBrowserTest : public BrowserTestBase { void AddTabAtIndexToBrowser(Browser* browser, int index, const GURL& url, - PageTransition::Type transition); + content::PageTransition transition); void AddTabAtIndex(int index, const GURL& url, - PageTransition::Type transition); + content::PageTransition transition); // Adds a selected tab at |index| to |url| with the specified |transition|. - void AddTabAt(int index, const GURL& url, PageTransition::Type transition); + void AddTabAt(int index, const GURL& url, content::PageTransition transition); // Override this to add any custom setup code that needs to be done on the // main thread after the browser is created and just before calling |