HomeSort by relevance Sort by last modified time
    Searched refs:history_service (Results 26 - 50 of 68) sorted by null

12 3

  /external/chromium/chrome/browser/visitedlink/
visitedlink_master.cc 212 HistoryService* history_service,
220 history_service_override_ = history_service;
832 HistoryService* history_service = history_service_override_;
833 if (!history_service && profile_) {
834 history_service = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
837 if (!history_service) {
849 history_service->IterateURLs(table_builder_);
    [all...]
visitedlink_master.h 71 HistoryService* history_service,
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.cc 112 HistoryService* const history_service = profile_ ? local
115 history::URLDatabase* url_db = history_service ?
116 history_service->InMemoryDatabase() : NULL;
bookmark_index_unittest.cc 237 HistoryService* const history_service = local
240 history::URLDatabase* url_db = history_service->InMemoryDatabase();
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_index.cc 15 #include "chrome/browser/history/history_service.h"
114 HistoryService* const history_service = browser_context_ ? local
119 history::URLDatabase* url_db = history_service ?
120 history_service->InMemoryDatabase() : NULL;
bookmark_index_unittest.cc 18 #include "chrome/browser/history/history_service.h"
246 HistoryService* const history_service = local
249 history::URLDatabase* url_db = history_service->InMemoryDatabase();
  /external/chromium_org/chrome/browser/ssl/
ssl_blocking_page.cc 181 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
184 if (history_service) {
185 history_service->GetVisibleVisitCountToHost(
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_prompt_controller.cc 16 #include "chrome/browser/history/history_service.h"
300 HistoryService* history_service = HistoryServiceFactory::GetForProfile(
303 if (!history_service)
307 history_service->QueryURL(
  /external/chromium_org/chrome/browser/history/
delete_directive_handler.cc 13 #include "chrome/browser/history/history_service.h"
285 HistoryService* history_service,
292 history_service->ScheduleDBTask(
371 HistoryService* history_service,
402 history_service->ScheduleDBTask(
redirect_browsertest.cc 20 #include "chrome/browser/history/history_service.h"
40 HistoryService* history_service = local
48 history_service->QueryRedirectsFrom(
top_sites_impl_unittest.cc 195 history_service()->ScheduleDBTask(new WaitForHistoryTask(), &consumer_);
213 HistoryService* history_service() { function in class:history::TopSitesImplTest
249 history_service()->AddPage(
259 history_service()->AddPage(
263 history_service()->SetPageTitle(url, title);
271 history_service()->AddPage(
275 history_service()->SetPageTitle(url, title);
280 history_service()->DeleteURL(url);
    [all...]
top_sites_likely_impl_unittest.cc 195 history_service()->ScheduleDBTask(new WaitForHistoryTask(), &consumer_);
214 HistoryService* history_service() { function in class:history::TopSitesLikelyImplTest
250 history_service()->AddPage(
260 history_service()->AddPage(
264 history_service()->SetPageTitle(url, title);
272 history_service()->AddPage(
276 history_service()->SetPageTitle(url, title);
281 history_service()->DeleteURL(url);
    [all...]
url_index_private_data.cc 27 #include "chrome/browser/history/history_service.h"
282 HistoryService* history_service,
298 IndexRow(NULL, history_service, new_row, languages, scheme_whitelist);
313 ScheduleUpdateRecentVisits(history_service, row_id);
361 HistoryService* history_service,
363 history_service->ScheduleDBTask(
698 HistoryService* history_service,
746 DCHECK(history_service);
747 ScheduleUpdateRecentVisits(history_service, row_id);
    [all...]
  /external/chromium_org/chrome/browser/importer/
profile_writer_unittest.cc 91 HistoryService* history_service = local
96 history_service->QueryHistory(
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 22 #include "chrome/browser/history/history_service.h"
82 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
84 if (history_service)
85 history_service->InMemoryDatabase();
451 HistoryService* history_service = local
453 if (!TryDeleteOldEntries(history_service)) {
autocomplete_action_predictor_unittest.cc 16 #include "chrome/browser/history/history_service.h"
192 HistoryService* history_service = local
195 ASSERT_TRUE(history_service);
197 history::URLDatabase* url_db = history_service->InMemoryDatabase();
  /external/chromium/chrome/browser/history/
top_sites_unittest.cc 183 history_service()->ScheduleDBTask(new WaitForHistoryTask(), &consumer_);
199 HistoryService* history_service() { function in class:history::TopSitesTest
234 history_service()->AddPage(
243 history_service()->AddPage(
246 history_service()->SetPageTitle(url, title);
254 history_service()->AddPage(
257 history_service()->SetPageTitle(url, title);
262 history_service()->DeleteURL(url);
896 history_service()->ExpireHistoryBetween(
    [all...]
  /external/chromium/chrome/browser/
browsing_data_remover.cc 115 HistoryService* history_service = local
117 if (history_service) {
122 history_service->ExpireHistoryBetween(restrict_urls,
  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_provider.cc 25 #include "chrome/browser/history/history_service.h"
113 HistoryService* const history_service = local
116 DCHECK(history_service && url.is_valid());
117 history_service->DeleteURL(url);
  /external/chromium_org/chrome/browser/download/
download_target_determiner.cc 17 #include "chrome/browser/history/history_service.h"
375 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
378 if (history_service && download_->GetReferrerUrl().is_valid()) {
379 history_service->GetVisibleVisitCountToHost(
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_registrar.cc 88 HistoryService* history_service = local
90 if (history_service) {
92 new HistoryModelWorker(history_service->AsWeakPtr(), this);
  /external/chromium/chrome/browser/autocomplete/
history_url_provider.cc 590 HistoryService* const history_service = local
592 if (!history_service)
623 history::URLDatabase* url_db = history_service->InMemoryDatabase();
647 history_service->ScheduleAutocomplete(this, params_);
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_service.h 37 explicit FaviconService(HistoryService* history_service);
  /external/chromium_org/chrome/browser/ui/website_settings/
website_settings.cc 93 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
95 if (history_service) {
96 history_service->GetVisibleVisitCountToHost(
  /external/chromium_org/chrome/browser/ui/webui/
bidi_checker_web_ui_test.cc 18 #include "chrome/browser/history/history_service.h"
161 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
164 history_service->AddPage(
166 history_service->SetPageTitle(history_url, UTF8ToUTF16(page_title));

Completed in 2199 milliseconds

12 3