HomeSort by relevance Sort by last modified time
    Searched refs:restrict_urls (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.h 44 virtual void RemoveURLs(const std::vector<GURL>& restrict_urls) OVERRIDE;
78 void DoRemoveURLs(const std::vector<GURL>& restrict_urls);
fullstream_ui_policy.cc 223 void FullStreamUIPolicy::DoRemoveURLs(const std::vector<GURL>& restrict_urls) {
234 if (restrict_urls.empty()) {
250 for (size_t i = 0; i < restrict_urls.size(); ++i) {
251 if (!restrict_urls[i].is_valid()) {
262 statement.BindString(0, restrict_urls[i].spec());
275 statement.BindString(0, restrict_urls[i].spec());
377 void FullStreamUIPolicy::RemoveURLs(const std::vector<GURL>& restrict_urls) {
378 ScheduleAndForget(this, &FullStreamUIPolicy::DoRemoveURLs, restrict_urls);
activity_log.h 115 // If restrict_urls is empty then all URLs in the activity log database are
116 // removed, otherwise only those in restrict_urls are removed.
117 void RemoveURLs(const std::vector<GURL>& restrict_urls);
118 void RemoveURLs(const std::set<GURL>& restrict_urls);
counting_policy.h 93 void DoRemoveURLs(const std::vector<GURL>& restrict_urls);
counting_policy.cc 520 void CountingPolicy::DoRemoveURLs(const std::vector<GURL>& restrict_urls) {
531 if (restrict_urls.empty()) {
548 for (size_t i = 0; i < restrict_urls.size(); ++i) {
550 if (!restrict_urls[i].is_valid() ||
551 !url_table_.StringToInt(db, restrict_urls[i].spec(), &url_id)) {
694 void CountingPolicy::RemoveURLs(const std::vector<GURL>& restrict_urls) {
695 ScheduleAndForget(this, &CountingPolicy::DoRemoveURLs, restrict_urls);
activity_log_policy.h 181 // different policies. If restrict_urls is empty then all URLs are removed.
182 virtual void RemoveURLs(const std::vector<GURL>& restrict_urls) = 0;
activity_log.cc 646 void ActivityLog::RemoveURLs(const std::vector<GURL>& restrict_urls) {
649 database_policy_->RemoveURLs(restrict_urls);
652 void ActivityLog::RemoveURLs(const std::set<GURL>& restrict_urls) {
657 for (std::set<GURL>::const_iterator it = restrict_urls.begin();
658 it != restrict_urls.end(); ++it) {
  /external/chromium_org/chrome/browser/history/
web_history_service.h 77 const std::set<GURL>& restrict_urls,
expire_history_backend.h 90 // Removes all visits to restrict_urls (or all URLs if empty) in the given
92 void ExpireHistoryBetween(const std::set<GURL>& restrict_urls,
expire_history_backend_unittest.cc 548 std::set<GURL> restrict_urls; local
549 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time());
642 std::set<GURL> restrict_urls; local
643 restrict_urls.insert(url_row1.url());
644 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time());
689 std::set<GURL> restrict_urls; local
690 expirer_.ExpireHistoryBetween(restrict_urls, visit_times[2], Time());
    [all...]
expire_history_backend.cc 232 const std::set<GURL>& restrict_urls, Time begin_time, Time end_time) {
240 if (!restrict_urls.empty()) {
242 for (std::set<GURL>::const_iterator url = restrict_urls.begin();
243 url != restrict_urls.end(); ++url)
history_service.cc     [all...]
web_history_service.cc 367 const std::set<GURL>& restrict_urls,
372 expire_list.back().urls = restrict_urls;
history_service.h 379 // If |restrict_urls| is not empty, only visits to the URLs in this set are
381 void ExpireHistoryBetween(const std::set<GURL>& restrict_urls,
399 const std::set<GURL>& restrict_urls,
    [all...]
  /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,
  /external/chromium_org/chrome/browser/extensions/api/history/
history_api.cc 431 std::set<GURL> restrict_urls; local
435 restrict_urls,
447 activity_log->RemoveURLs(restrict_urls);
461 std::set<GURL> restrict_urls;
465 restrict_urls,
477 activity_log->RemoveURLs(restrict_urls);
  /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,
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover.cc 266 std::set<GURL> restrict_urls; local
268 restrict_urls.insert(remove_origin_);
273 restrict_urls, delete_begin_, delete_end_,
282 extensions::ActivityLog::GetInstance(profile_)->RemoveURLs(restrict_urls);
    [all...]

Completed in 3731 milliseconds

1 2