From 2905f74ce902dbf21dcbbf7ed3537f803f027630 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Thu, 13 Oct 2011 03:51:58 +0000 Subject: 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 --- content/browser/site_instance_unittest.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/browser/site_instance_unittest.cc') diff --git a/content/browser/site_instance_unittest.cc b/content/browser/site_instance_unittest.cc index 3a7cc0a..339151d 100644 --- a/content/browser/site_instance_unittest.cc +++ b/content/browser/site_instance_unittest.cc @@ -188,7 +188,7 @@ TEST_F(SiteInstanceTest, SiteInstanceDestructor) { NavigationEntry* e1 = new NavigationEntry(instance, 0, url, GURL(), string16(), - PageTransition::LINK); + content::PAGE_TRANSITION_LINK); // Redundantly setting e1's SiteInstance shouldn't affect the ref count. e1->set_site_instance(instance); @@ -197,7 +197,7 @@ TEST_F(SiteInstanceTest, SiteInstanceDestructor) { // Add a second reference NavigationEntry* e2 = new NavigationEntry(instance, 0, url, GURL(), string16(), - PageTransition::LINK); + content::PAGE_TRANSITION_LINK); // Now delete both entries and be sure the SiteInstance goes away. delete e1; @@ -252,7 +252,7 @@ TEST_F(SiteInstanceTest, CloneNavigationEntry) { NavigationEntry* e1 = new NavigationEntry(instance1, 0, url, GURL(), string16(), - PageTransition::LINK); + content::PAGE_TRANSITION_LINK); // Clone the entry NavigationEntry* e2 = new NavigationEntry(*e1); -- cgit v1.1