Home | History | Annotate | Download | only in android

Lines Matching refs:new_row

321     HistoryAndBookmarkRow new_row = row;
322 if (!SimulateUpdateURL(new_row, ids_set, notifications))
970 HistoryAndBookmarkRow new_row;
971 new_row.set_last_visit_time(FromDatabaseTime(
973 new_row.set_created(FromDatabaseTime(
975 new_row.set_visit_count(statement->statement()->ColumnInt(2));
976 new_row.set_title(statement->statement()->ColumnString16(3));
995 new_row.set_favicon(bitmap_data);
999 new_row.set_is_bookmark(statement->statement()->ColumnBool(5));
1016 new_row.set_url(row.url());
1017 new_row.set_raw_url(row.raw_url());
1019 new_row.set_last_visit_time(row.last_visit_time());
1021 new_row.set_created(row.created());
1023 new_row.set_visit_count(row.visit_count());
1025 new_row.set_title(row.title());
1027 new_row.set_favicon(row.favicon());
1028 favicon_details->urls.insert(new_row.url());
1031 new_row.set_is_bookmark(row.is_bookmark());
1033 if (!urls_handler_->Insert(&new_row))
1036 if (!visit_handler_->Insert(&new_row))
1042 if (!android_urls_handler_->Update(new_row, ids))
1045 if (favicon_handler_ && !favicon_handler_->Insert(&new_row))
1048 if (!bookmark_model_handler_->Insert(&new_row))
1052 if (!history_db_->GetURLRow(new_row.url_id(), &new_url_row))