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

Unified Diff: chrome/browser/google/google_search_counter_unittest.cc

Issue 562603002: Move PageTransition from //content/public/common to //ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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: chrome/browser/google/google_search_counter_unittest.cc
diff --git a/chrome/browser/google/google_search_counter_unittest.cc b/chrome/browser/google/google_search_counter_unittest.cc
index df8731cf825d8b08525018ca17e77a6f80a8b8c6..faee2efdeba16f9cd33e16b9e4f594ae808ec56d 100644
--- a/chrome/browser/google/google_search_counter_unittest.cc
+++ b/chrome/browser/google/google_search_counter_unittest.cc
@@ -76,9 +76,9 @@ void GoogleSearchCounterTest::TestGoogleSearch(
scoped_ptr<content::NavigationEntry> entry(
content::NavigationEntry::Create());
if (is_omnibox) {
- entry->SetTransitionType(content::PageTransitionFromInt(
- content::PAGE_TRANSITION_GENERATED |
- content::PAGE_TRANSITION_FROM_ADDRESS_BAR));
+ entry->SetTransitionType(ui::PageTransitionFromInt(
+ ui::PAGE_TRANSITION_GENERATED |
+ ui::PAGE_TRANSITION_FROM_ADDRESS_BAR));
}
entry->SetURL(GURL(url));
details.entry = entry.get();

Powered by Google App Engine
This is Rietveld 408576698