Home
last modified time | relevance | path

Searched refs:restrict_urls (Results 1 – 12 of 12) sorted by relevance

/external/chromium/chrome/browser/history/
Dexpire_history_backend.cc225 const std::set<GURL>& restrict_urls, Time begin_time, Time end_time) { in ExpireHistoryBetween() argument
231 text_db_->DeleteFromUncommitted(restrict_urls, begin_time, end_time); in ExpireHistoryBetween()
237 if (!restrict_urls.empty()) { in ExpireHistoryBetween()
239 for (std::set<GURL>::const_iterator url = restrict_urls.begin(); in ExpireHistoryBetween()
240 url != restrict_urls.end(); ++url) in ExpireHistoryBetween()
402 std::set<GURL> restrict_urls; in DeleteOneURL() local
403 restrict_urls.insert(url_row.url()); in DeleteOneURL()
404 text_db_->DeleteFromUncommitted(restrict_urls, base::Time(), base::Time()); in DeleteOneURL()
Dtext_database_manager.cc349 const std::set<GURL>& restrict_urls, Time begin, Time end) { in DeleteFromUncommitted() argument
364 if (restrict_urls.empty()) { in DeleteFromUncommitted()
369 if (restrict_urls.find(cur->first) != restrict_urls.end()) in DeleteFromUncommitted()
Dexpire_history_backend_unittest.cc609 std::set<GURL> restrict_urls; in TEST_F() local
610 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time()); in TEST_F()
667 std::set<GURL> restrict_urls; in TEST_F() local
668 restrict_urls.insert(url_row1.url()); in TEST_F()
669 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time()); in TEST_F()
721 std::set<GURL> restrict_urls; in TEST_F() local
722 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time()); in TEST_F()
Dexpire_history_backend.h88 void ExpireHistoryBetween(const std::set<GURL>& restrict_urls,
Dtext_database_manager.h136 void DeleteFromUncommitted(const std::set<GURL>& restrict_urls,
Dhistory.cc737 const std::set<GURL>& restrict_urls, in ExpireHistoryBetween() argument
745 restrict_urls, begin_time, end_time); in ExpireHistoryBetween()
Dhistory_backend.h298 const std::set<GURL>& restrict_urls,
Dhistory_backend.cc1994 const std::set<GURL>& restrict_urls, in ExpireHistoryBetween() argument
2001 if (begin_time.is_null() && end_time.is_null() && restrict_urls.empty()) { in ExpireHistoryBetween()
2007 expirer_.ExpireHistoryBetween(restrict_urls, begin_time, end_time); in ExpireHistoryBetween()
2020 if (history_publisher_.get() && restrict_urls.empty()) in ExpireHistoryBetween()
Dhistory_backend_unittest.cc484 std::set<GURL> restrict_urls; in TEST_F() local
485 backend_->expire_backend()->ExpireHistoryBetween(restrict_urls, in TEST_F()
Dhistory.h410 void ExpireHistoryBetween(const std::set<GURL>& restrict_urls,
/external/chromium/chrome/browser/extensions/
Dextension_history_api.cc358 std::set<GURL> restrict_urls; in RunAsyncImpl() local
361 restrict_urls, in RunAsyncImpl()
375 std::set<GURL> restrict_urls; in RunAsyncImpl() local
378 restrict_urls, in RunAsyncImpl()
/external/chromium/chrome/browser/
Dbrowsing_data_remover.cc118 std::set<GURL> restrict_urls; in Remove() local
122 history_service->ExpireHistoryBetween(restrict_urls, in Remove()