HomeSort by relevance Sort by last modified time
    Searched refs:url_db (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.h 192 void DeleteOldEntries(history::URLDatabase* url_db);
194 // Deletes any old or invalid entries from the local caches. |url_db| and
197 history::URLDatabase* url_db,
autocomplete_action_predictor_unittest.cc 134 history::URLDatabase* url_db = history->InMemoryDatabase(); local
135 CHECK(url_db);
145 return url_db->AddURL(row);
197 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local
198 ASSERT_TRUE(url_db);
204 predictor_->DeleteOldIdsFromCaches(url_db, id_list);
autocomplete_action_predictor.cc 497 history::URLDatabase* url_db = service->InMemoryDatabase();
498 if (!url_db)
501 DeleteOldEntries(url_db);
506 history::URLDatabase* url_db) {
513 DeleteOldIdsFromCaches(url_db, &ids_to_delete);
525 history::URLDatabase* url_db,
530 DCHECK(url_db);
537 if ((url_db->GetRowForURL(it->first.url, &url_row) == 0) ||
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider.cc 130 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local
131 // url_db can be NULL if it hasn't finished initializing (or
135 if (url_db) {
156 if (url_db->GetRowForURL(
163 } else if (url_db->IsTypedHost(host) &&
extension_app_provider_unittest.cc 68 history::URLDatabase* url_db = history_service_->InMemoryDatabase(); local
83 url_db->AddURL(info);
extension_app_provider.cc 219 history::URLDatabase* url_db = history_service ? local
221 if (url_db) {
223 url_db->GetRowForURL(url, &info);
search_provider.cc 463 history::URLDatabase* url_db = history_service ? local
465 if (!url_db)
481 url_db->GetMostRecentKeywordSearchTerms(default_url->id(), input_.text(),
489 url_db->GetMostRecentKeywordSearchTerms(keyword_url->id(),
    [all...]
history_url_provider.cc 515 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local
516 // url_db can be NULL if it hasn't finished initializing (or failed to
523 if (url_db) {
524 DoAutocomplete(NULL, url_db, params.get());
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
chrome_bookmark_client.cc 128 history::URLDatabase* url_db = local
133 // If |url_db| is the InMemoryDatabase, it might not cache all URLRows, but
137 if (url_db && url_db->GetRowForURL((*i)->url(), &url))
  /external/chromium_org/chrome/browser/ui/webui/omnibox/
omnibox_ui_handler.cc 152 history::URLDatabase* url_db = history_service->InMemoryDatabase();
153 if (!url_db)
155 *is_typed_host = url_db->IsTypedHost(base::UTF16ToUTF8(host));

Completed in 175 milliseconds