HomeSort by relevance Sort by last modified time
    Searched defs:url_row (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/history/
in_memory_history_backend.cc 174 URLRow url_row; local
176 if (!db_->GetRowForURL(details.url, &url_row)) {
186 url_id = url_row.id();
starred_url_database.cc 276 URLRow url_row; local
277 if (!GetRowForURL(entry->url, &url_row)) {
279 url_row = URLRow(entry->url);
280 url_row.set_title(entry->title);
281 url_row.set_hidden(false);
282 entry->url_id = this->AddURL(url_row);
284 entry->url_id = url_row.id(); // The caller doesn't have to set this.
293 UpdateURLRow(entry->url_id, url_row);
text_database_manager.cc 197 URLRow url_row; local
198 if (!url_database_->GetRowForURL(url, &url_row))
201 if (!visit_database_->GetMostRecentVisitForURL(url_row.id(), &visit))
216 AddPageData(url, url_row.id(), visit.visit_id, visit.visit_time,
244 URLRow url_row; local
245 if (!url_database_->GetRowForURL(url, &url_row))
248 if (!visit_database_->GetMostRecentVisitForURL(url_row.id(), &visit))
252 AddPageData(url, url_row.id(), visit.visit_id, visit.visit_time,
253 url_row.title(), body);
expire_history_backend.cc 192 URLRow url_row;
193 if (!main_db_->GetRowForURL(url, &url_row))
201 main_db_->GetVisitsForURL(url_row.id(), &visits);
214 DeleteOneURL(url_row, is_bookmarked, &dependencies);
395 const URLRow& url_row,
398 main_db_->DeleteSegmentForURL(url_row.id());
403 restrict_urls.insert(url_row.url());
408 dependencies->deleted_urls.push_back(url_row);
412 thumb_db_->DeleteThumbnail(url_row.id());
416 if (thumb_db_->GetIconMappingsForPageURL(url_row.url(), &icon_mappings))
486 URLRow& url_row = dependencies->affected_urls[i->first]; local
    [all...]
expire_history_backend_unittest.cc 551 URLRow url_row; local
552 ASSERT_TRUE(main_db_->GetURLRow(url_ids[2], &url_row));
555 StarURL(url_row.url());
558 expirer_.DeleteURL(url_row.url());
561 GURL url = url_row.url();
562 ASSERT_TRUE(main_db_->GetRowForURL(url, &url_row));
565 FaviconID favicon_id = GetFavicon(url_row.url(), FAVICON);
569 ASSERT_EQ(0, CountTextMatchesForURL(url_row.url()));
573 main_db_->GetVisitsForURL(url_row.id(), &visits);
578 // ASSERT_TRUE(HasThumbnail(url_row.id()))
    [all...]
history_backend.cc 958 history::URLRow url_row; local
1656 URLRow url_row; local
2029 URLRow url_row; local
    [all...]

Completed in 1417 milliseconds