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

Unified Diff: chrome/browser/history/android/visit_sql_handler.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/history/android/visit_sql_handler.cc
diff --git a/chrome/browser/history/android/visit_sql_handler.cc b/chrome/browser/history/android/visit_sql_handler.cc
index fe9c1e50014d892bc10ea40a2bebd5f58eaa51cf..29be69fa8ff0218f3995de55111431a1a0692f98 100644
--- a/chrome/browser/history/android/visit_sql_handler.cc
+++ b/chrome/browser/history/android/visit_sql_handler.cc
@@ -113,10 +113,10 @@ bool VisitSQLHandler::Delete(const TableIDRows& ids_set) {
}
bool VisitSQLHandler::AddVisit(URLID url_id, const Time& visit_time) {
- // TODO : Is 'content::PAGE_TRANSITION_AUTO_BOOKMARK' proper?
- // if not, a new content::PageTransition type will need.
+ // TODO : Is 'ui::PAGE_TRANSITION_AUTO_BOOKMARK' proper?
+ // if not, a new ui::PageTransition type will need.
VisitRow visit_row(url_id, visit_time, 0,
- content::PAGE_TRANSITION_AUTO_BOOKMARK, 0);
+ ui::PAGE_TRANSITION_AUTO_BOOKMARK, 0);
return history_db_->AddVisit(&visit_row, SOURCE_BROWSED);
}
« no previous file with comments | « chrome/browser/history/android/android_provider_backend_unittest.cc ('k') | chrome/browser/history/expire_history_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698