summaryrefslogtreecommitdiffstats
path: root/content/browser/tab_contents/navigation_controller_unittest.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-18 17:08:53 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-18 17:08:53 +0000
commit66fdbd5b47697242f38b6ea82e5e6df86786e489 (patch)
tree4fe44b90d97a29afbf969579c0cb10c152eb51e0 /content/browser/tab_contents/navigation_controller_unittest.cc
parent07c4ce78c859c6913f6e1f5fe0d6a38e94cd2434 (diff)
downloadchromium_src-66fdbd5b47697242f38b6ea82e5e6df86786e489.zip
chromium_src-66fdbd5b47697242f38b6ea82e5e6df86786e489.tar.gz
chromium_src-66fdbd5b47697242f38b6ea82e5e6df86786e489.tar.bz2
Move the PageType enum to content/public/common, put it into the content namespace, and also make it conform to the Content API enum naming convention.
BUG=98716 TBR=ananta Review URL: http://codereview.chromium.org/8336013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106076 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tab_contents/navigation_controller_unittest.cc')
-rw-r--r--content/browser/tab_contents/navigation_controller_unittest.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/browser/tab_contents/navigation_controller_unittest.cc b/content/browser/tab_contents/navigation_controller_unittest.cc
index 3ef5f39..543c98a 100644
--- a/content/browser/tab_contents/navigation_controller_unittest.cc
+++ b/content/browser/tab_contents/navigation_controller_unittest.cc
@@ -1606,7 +1606,7 @@ TEST_F(NavigationControllerTest, Interstitial) {
const GURL url2("http://bar");
controller().LoadURL(
url1, GURL(), content::PAGE_TRANSITION_TYPED, std::string());
- controller().pending_entry()->set_page_type(INTERSTITIAL_PAGE);
+ controller().pending_entry()->set_page_type(content::PAGE_TYPE_INTERSTITIAL);
// At this point the interstitial will be displayed and the load will still
// be pending. If the user continues, the load will commit.
@@ -1614,7 +1614,8 @@ TEST_F(NavigationControllerTest, Interstitial) {
// The page should be a normal page again.
EXPECT_EQ(url2, controller().GetLastCommittedEntry()->url());
- EXPECT_EQ(NORMAL_PAGE, controller().GetLastCommittedEntry()->page_type());
+ EXPECT_EQ(content::PAGE_TYPE_NORMAL,
+ controller().GetLastCommittedEntry()->page_type());
}
TEST_F(NavigationControllerTest, RemoveEntry) {
@@ -1934,7 +1935,7 @@ TEST_F(NavigationControllerTest, CloneOmitsInterstitials) {
// Add an interstitial entry. Should be deleted with controller.
NavigationEntry* interstitial_entry = new NavigationEntry();
- interstitial_entry->set_page_type(INTERSTITIAL_PAGE);
+ interstitial_entry->set_page_type(content::PAGE_TYPE_INTERSTITIAL);
controller().AddTransientEntry(interstitial_entry);
scoped_ptr<TabContents> clone(controller().tab_contents()->Clone());