| 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);
|
| }
|
|
|
|
|