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

  /external/chromium_org/chrome/browser/resources/predictors/
resource_prefetch_predictor.js 48 var hasUrlData = database.url_db && database.url_db.length > 0;
52 renderCacheData($('rpp_url_body'), database.url_db);
  /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 126 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local
127 // url_db can be NULL if it hasn't finished initializing (or
131 if (url_db) {
152 if (url_db->GetRowForURL(
159 } else if (url_db->IsTypedHost(host) &&
history_url_provider.cc 560 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local
561 // url_db can be NULL if it hasn't finished initializing (or failed to
568 if (url_db) {
569 DoAutocomplete(NULL, url_db, params.get());
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
chrome_bookmark_client.cc 129 history::URLDatabase* url_db = local
134 // If |url_db| is the InMemoryDatabase, it might not cache all URLRows, but
138 if (url_db && url_db->GetRowForURL((*i)->url(), &url))
  /external/chromium_org/chrome/browser/ui/webui/omnibox/
omnibox_ui_handler.cc 170 history::URLDatabase* url_db = history_service->InMemoryDatabase();
171 if (!url_db)
173 *is_typed_host = url_db->IsTypedHost(base::UTF16ToUTF8(host));
  /external/chromium_org/components/omnibox/
search_provider.cc 548 history::URLDatabase* url_db = client_->InMemoryDatabase();
549 if (!url_db)
565 url_db->GetMostRecentKeywordSearchTerms(default_url->id(),
575 url_db->GetMostRecentKeywordSearchTerms(keyword_url->id(),
    [all...]

Completed in 161 milliseconds