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

Unified Diff: content/browser/site_instance_unittest.cc

Issue 8253002: Move PageTransition into content namespace. While I'm touching all these files, I've also updated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/browser/site_instance_unittest.cc
===================================================================
--- content/browser/site_instance_unittest.cc (revision 105162)
+++ content/browser/site_instance_unittest.cc (working copy)
@@ -188,7 +188,7 @@
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 @@
// 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 @@
NavigationEntry* e1 = new NavigationEntry(instance1, 0, url, GURL(),
string16(),
- PageTransition::LINK);
+ content::PAGE_TRANSITION_LINK);
// Clone the entry
NavigationEntry* e2 = new NavigationEntry(*e1);
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.cc ('k') | content/browser/tab_contents/interstitial_page.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698