Home | History | Annotate | Download | only in android

Lines Matching refs:new_row

349     HistoryAndBookmarkRow new_row = row;
350 if (!SimulateUpdateURL(new_row, ids_set, notifications))
1003 HistoryAndBookmarkRow new_row;
1004 new_row.set_last_visit_time(FromDatabaseTime(
1006 new_row.set_created(FromDatabaseTime(
1008 new_row.set_visit_count(statement->statement()->ColumnInt(2));
1009 new_row.set_title(statement->statement()->ColumnString16(3));
1028 new_row.set_favicon(bitmap_data);
1032 new_row.set_is_bookmark(statement->statement()->ColumnBool(5));
1049 new_row.set_url(row.url());
1050 new_row.set_raw_url(row.raw_url());
1052 new_row.set_last_visit_time(row.last_visit_time());
1054 new_row.set_created(row.created());
1056 new_row.set_visit_count(row.visit_count());
1058 new_row.set_title(row.title());
1060 new_row.set_favicon(row.favicon());
1061 favicon_details->urls.insert(new_row.url());
1064 new_row.set_is_bookmark(row.is_bookmark());
1066 if (!urls_handler_->Insert(&new_row))
1069 if (!visit_handler_->Insert(&new_row))
1075 if (!android_urls_handler_->Update(new_row, ids))
1078 if (favicon_handler_ && !favicon_handler_->Insert(&new_row))
1081 if (!bookmark_model_handler_->Insert(&new_row))
1085 if (!history_db_->GetURLRow(new_row.url_id(), &new_url_row))