/external/chromium/chrome/browser/history/ |
expire_history_backend.cc | 225 const std::set<GURL>& restrict_urls, Time begin_time, Time end_time) { 231 text_db_->DeleteFromUncommitted(restrict_urls, begin_time, end_time); 237 if (!restrict_urls.empty()) { 239 for (std::set<GURL>::const_iterator url = restrict_urls.begin(); 240 url != restrict_urls.end(); ++url) 402 std::set<GURL> restrict_urls; local 403 restrict_urls.insert(url_row.url()); 404 text_db_->DeleteFromUncommitted(restrict_urls, base::Time(), base::Time());
|
expire_history_backend.h | 86 // Removes all visits to restrict_urls (or all URLs if empty) in the given 88 void ExpireHistoryBetween(const std::set<GURL>& restrict_urls,
|
text_database_manager.cc | 349 const std::set<GURL>& restrict_urls, Time begin, Time end) { 364 if (restrict_urls.empty()) { 369 if (restrict_urls.find(cur->first) != restrict_urls.end())
|
expire_history_backend_unittest.cc | 609 std::set<GURL> restrict_urls; local 610 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time()); 667 std::set<GURL> restrict_urls; local 668 restrict_urls.insert(url_row1.url()); 669 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time()); 721 std::set<GURL> restrict_urls; local 722 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time()); [all...] |
text_database_manager.h | 131 // range, and we don't want any of our data to "leak." If restrict_urls is 136 void DeleteFromUncommitted(const std::set<GURL>& restrict_urls,
|
history.cc | 737 const std::set<GURL>& restrict_urls, 745 restrict_urls, begin_time, end_time);
|
history_backend.h | 298 const std::set<GURL>& restrict_urls,
|
history.h | 408 // If |restrict_urls| is not empty, only visits to the URLs in this set are 410 void ExpireHistoryBetween(const std::set<GURL>& restrict_urls, [all...] |
history_backend.cc | [all...] |
history_backend_unittest.cc | 484 std::set<GURL> restrict_urls; local 485 backend_->expire_backend()->ExpireHistoryBetween(restrict_urls, [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_history_api.cc | 358 std::set<GURL> restrict_urls; local 361 restrict_urls, 375 std::set<GURL> restrict_urls; local 378 restrict_urls,
|
/external/chromium/chrome/browser/ |
browsing_data_remover.cc | 118 std::set<GURL> restrict_urls; local 122 history_service->ExpireHistoryBetween(restrict_urls,
|