/external/chromium/chrome/browser/bookmarks/ |
bookmark_index_unittest.cc | 240 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local 258 url_db->AddURL(info); 266 url_db->GetRowForURL(data[0].url, &result1); 270 url_db->GetRowForURL(data[1].url, &result2); 274 url_db->GetRowForURL(data[2].url, &result3); 278 url_db->GetRowForURL(data[3].url, &result4);
|
bookmark_index.cc | 115 history::URLDatabase* url_db = history_service ? local 119 ExtractBookmarkNodePairs(url_db, *i, node_typed_counts); 126 history::URLDatabase* url_db, 133 if (url_db) 134 url_db->GetRowForURL((*i)->GetURL(), &url);
|
bookmark_index.h | 75 void ExtractBookmarkNodePairs(history::URLDatabase* url_db,
|
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_index_unittest.cc | 249 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local 267 url_db->AddURL(info); 275 url_db->GetRowForURL(data[0].url, &result1); 279 url_db->GetRowForURL(data[1].url, &result2); 283 url_db->GetRowForURL(data[2].url, &result3); 287 url_db->GetRowForURL(data[3].url, &result4);
|
bookmark_index.cc | 119 history::URLDatabase* url_db = history_service ? local 123 ExtractBookmarkNodePairs(url_db, *i, node_typed_counts); 134 history::URLDatabase* url_db, 141 if (url_db) 142 url_db->GetRowForURL((*i)->url(), &url);
|
bookmark_index.h | 73 void ExtractBookmarkNodePairs(history::URLDatabase* url_db,
|
/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/chrome/browser/autocomplete/ |
extension_app_provider_unittest.cc | 56 history::URLDatabase* url_db = history_service_->InMemoryDatabase(); local 67 url_db->AddURL(info);
|
extension_app_provider.cc | 161 history::URLDatabase* url_db = history_service ? local 163 if (url_db) { 165 url_db->GetRowForURL(url, &info);
|
history_url_provider.cc | 623 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local 624 // url_db can be NULL if it hasn't finished initializing (or failed to 631 if (url_db) { 632 DoAutocomplete(NULL, url_db, params.get()); [all...] |
search_provider.cc | 294 history::URLDatabase* url_db = history_service ? local 296 if (!url_db) 301 url_db->GetMostRecentKeywordSearchTerms( 308 url_db->GetMostRecentKeywordSearchTerms( [all...] |
/external/chromium_org/chrome/browser/predictors/ |
autocomplete_action_predictor.h | 185 void DeleteOldEntries(history::URLDatabase* url_db); 187 // Deletes any old or invalid entries from the local caches. |url_db| and 190 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 | 469 history::URLDatabase* url_db = service->InMemoryDatabase(); 470 if (!url_db) 473 DeleteOldEntries(url_db); 478 history::URLDatabase* url_db) { 485 DeleteOldIdsFromCaches(url_db, &ids_to_delete); 497 history::URLDatabase* url_db, 502 DCHECK(url_db); 509 if ((url_db->GetRowForURL(it->first.url, &url_row) == 0) ||
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_quick_provider.cc | 144 history::URLDatabase* url_db = history_service->InMemoryDatabase(); local 145 // url_db can be NULL if it hasn't finished initializing (or 149 if (url_db) { 169 if (url_db->GetRowForURL( 176 } else if (url_db->IsTypedHost(host) &&
|
extension_app_provider_unittest.cc | 65 history::URLDatabase* url_db = history_service_->InMemoryDatabase(); local 80 url_db->AddURL(info);
|
extension_app_provider.cc | 215 history::URLDatabase* url_db = history_service ? local 217 if (url_db) { 219 url_db->GetRowForURL(url, &info);
|
history_url_provider.cc | 727 history::URLDatabase* url_db = history_service->InMemoryDatabase(); 728 // url_db can be NULL if it hasn't finished initializing (or failed to 735 if (url_db) { 736 DoAutocomplete(NULL, url_db, params.get()); [all...] |
search_provider.cc | 820 history::URLDatabase* url_db = history_service ? local 824 if (!url_db) 840 url_db->GetMostRecentKeywordSearchTerms(default_url->id(), input_.text(), 848 url_db->GetMostRecentKeywordSearchTerms(keyword_url->id(), [all...] |
/external/chromium_org/chrome/browser/ui/webui/omnibox/ |
omnibox_ui_handler.cc | 168 history::URLDatabase* url_db = history_service->InMemoryDatabase(); 169 if (!url_db) 171 *is_typed_host = url_db->IsTypedHost(UTF16ToUTF8(host));
|
/external/chromium/chrome/browser/history/ |
thumbnail_database.h | 247 bool MigrateIconMappingData(URLDatabase* url_db);
|
thumbnail_database.cc | 58 URLDatabase* url_db) { 107 if (!UpgradeToVersion4() || !MigrateIconMappingData(url_db)) { 557 bool ThumbnailDatabase::MigrateIconMappingData(URLDatabase* url_db) { 559 if (!url_db->InitIconMappingEnumeratorForEverything(&e))
|
history_backend.h | 406 void QueryHistoryBasic(URLDatabase* url_db, VisitDatabase* visit_db,
|
/external/chromium_org/chrome/browser/history/ |
history_backend.h | 624 void QueryHistoryBasic(URLDatabase* url_db, VisitDatabase* visit_db, 626 void QueryHistoryText(URLDatabase* url_db, [all...] |
history_backend.cc | [all...] |