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

Unified Diff: chrome/browser/autocomplete/history_quick_provider_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/autocomplete/history_quick_provider_unittest.cc
diff --git a/chrome/browser/autocomplete/history_quick_provider_unittest.cc b/chrome/browser/autocomplete/history_quick_provider_unittest.cc
index d9c42344d6bd57bf92c599ad4800033f2d7fc21a..1d0e29e1d6bd7810ca65b8a975e4182f6769400e 100644
--- a/chrome/browser/autocomplete/history_quick_provider_unittest.cc
+++ b/chrome/browser/autocomplete/history_quick_provider_unittest.cc
@@ -242,8 +242,8 @@ void HistoryQuickProviderTest::FillData() {
"INSERT INTO \"visits\" VALUES(%" PRIuS ", %" PRIuS ", %" PRId64
", 0, %d, 0, 1)",
visit_id++, i + 1, visit_time.ToInternalValue(),
- (j < cur.typed_count) ? content::PAGE_TRANSITION_TYPED :
- content::PAGE_TRANSITION_LINK);
+ (j < cur.typed_count) ? ui::PAGE_TRANSITION_TYPED :
+ ui::PAGE_TRANSITION_LINK);
sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line.c_str()));
EXPECT_TRUE(sql_stmt.Run());

Powered by Google App Engine
This is Rietveld 408576698