Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / history / android / visit_sql_handler.cc
index fe9c1e5..29be69f 100644 (file)
@@ -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);
 }