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

1 2

  /external/chromium_org/chrome/browser/extensions/api/browsing_data/
browsing_data_test.cc 62 called_with_details_.reset(new BrowsingDataRemover::NotificationDetails());
75 called_with_details_.reset(new BrowsingDataRemover::NotificationDetails(
76 *content::Details<BrowsingDataRemover::NotificationDetails>(
134 void SetSinceAndVerify(BrowsingDataRemover::TimePeriod since_pref) {
152 if (since_pref != BrowsingDataRemover::EVERYTHING) {
154 BrowsingDataRemover::CalculateBeginDeleteTime(since_pref);
170 !!(data_type_flags & BrowsingDataRemover::REMOVE_CACHE));
172 !!(data_type_flags & BrowsingDataRemover::REMOVE_COOKIES));
174 !!(data_type_flags & BrowsingDataRemover::REMOVE_HISTORY));
176 !!(data_type_flags & BrowsingDataRemover::REMOVE_FORM_DATA))
    [all...]
browsing_data_api.cc 71 return BrowsingDataRemover::REMOVE_APPCACHE;
73 return BrowsingDataRemover::REMOVE_CACHE;
75 return BrowsingDataRemover::REMOVE_COOKIES;
77 return BrowsingDataRemover::REMOVE_DOWNLOADS;
79 return BrowsingDataRemover::REMOVE_FILE_SYSTEMS;
81 return BrowsingDataRemover::REMOVE_FORM_DATA;
83 return BrowsingDataRemover::REMOVE_HISTORY;
85 return BrowsingDataRemover::REMOVE_INDEXEDDB;
87 return BrowsingDataRemover::REMOVE_LOCAL_STORAGE;
90 return BrowsingDataRemover::REMOVE_SERVER_BOUND_CERTS
    [all...]
browsing_data_api.h 76 // functions will inherit. Each needs to be an observer of BrowsingDataRemover
83 public BrowsingDataRemover::Observer {
85 // BrowsingDataRemover::Observer interface method.
105 // that can be used with the BrowsingDataRemover.
  /external/chromium/chrome/browser/ui/webui/options/
clear_browser_data_handler.h 15 public BrowsingDataRemover::Observer {
32 // Callback from BrowsingDataRemover. Closes the dialog.
35 // If non-null it means removal is in progress. BrowsingDataRemover takes care
37 BrowsingDataRemover* remover_;
clear_browser_data_handler.cc 106 remove_mask |= BrowsingDataRemover::REMOVE_HISTORY;
108 remove_mask |= BrowsingDataRemover::REMOVE_DOWNLOADS;
110 remove_mask |= BrowsingDataRemover::REMOVE_CACHE;
112 remove_mask |= BrowsingDataRemover::REMOVE_COOKIES;
114 remove_mask |= BrowsingDataRemover::REMOVE_LSO_DATA;
117 remove_mask |= BrowsingDataRemover::REMOVE_PASSWORDS;
119 remove_mask |= BrowsingDataRemover::REMOVE_FORM_DATA;
132 // BrowsingDataRemover deletes itself when done.
133 remover_ = new BrowsingDataRemover(profile,
134 static_cast<BrowsingDataRemover::TimePeriod>(period_selected)
    [all...]
  /external/chromium/chrome/browser/
browsing_data_remover.cc 44 // BrowsingDataRemover implement RefCounted.
45 DISABLE_RUNNABLE_METHOD_REFCOUNT(BrowsingDataRemover);
47 bool BrowsingDataRemover::removing_ = false;
49 BrowsingDataRemover::BrowsingDataRemover(Profile* profile,
57 this, &BrowsingDataRemover::OnClearedDatabases)),
59 this, &BrowsingDataRemover::DoClearCache)),
61 this, &BrowsingDataRemover::OnGotAppCacheInfo)),
63 this, &BrowsingDataRemover::OnAppCacheDeleted)),
77 BrowsingDataRemover::BrowsingDataRemover(Profile* profile
    [all...]
browsing_data_remover.h 36 // BrowsingDataRemover is responsible for removing data related to browsing:
39 class BrowsingDataRemover : public NotificationObserver,
72 // Creates a BrowsingDataRemover to remove browser data from the specified
74 BrowsingDataRemover(Profile* profile, base::Time delete_begin,
77 // Creates a BrowsingDataRemover to remove browser data from the specified
79 BrowsingDataRemover(Profile* profile, TimePeriod time_period,
103 // BrowsingDataRemover deletes itself (using DeleteTask) and is not supposed
106 friend class DeleteTask<BrowsingDataRemover>;
107 ~BrowsingDataRemover();
111 // anything else notifies observers and deletes this BrowsingDataRemover
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
clear_browser_data_handler.h 16 public BrowsingDataRemover::Observer {
35 // BrowsingDataRemover::Observer implementation.
42 // If non-null it means removal is in progress. BrowsingDataRemover takes care
44 BrowsingDataRemover* remover_;
clear_browser_data_handler.cc 155 int site_data_mask = BrowsingDataRemover::REMOVE_SITE_DATA;
158 site_data_mask &= ~BrowsingDataRemover::REMOVE_PLUGIN_DATA;
164 remove_mask |= BrowsingDataRemover::REMOVE_HISTORY;
168 remove_mask |= BrowsingDataRemover::REMOVE_DOWNLOADS;
171 remove_mask |= BrowsingDataRemover::REMOVE_CACHE;
177 remove_mask |= BrowsingDataRemover::REMOVE_PASSWORDS;
179 remove_mask |= BrowsingDataRemover::REMOVE_FORM_DATA;
183 remove_mask |= BrowsingDataRemover::REMOVE_CONTENT_LICENSES;
190 // BrowsingDataRemover deletes itself when done.
192 remover_ = BrowsingDataRemover::CreateForPeriod(profile
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover_unittest.cc 96 class AwaitCompletionHelper : public BrowsingDataRemover::Observer {
124 // BrowsingDataRemover::Observer implementation.
627 void BlockUntilBrowsingDataRemoved(BrowsingDataRemover::TimePeriod period,
630 BrowsingDataRemover* remover = BrowsingDataRemover::CreateForPeriod(
639 called_with_details_.reset(new BrowsingDataRemover::NotificationDetails());
641 // BrowsingDataRemover deletes itself when it completes.
653 void BlockUntilOriginDataRemoved(BrowsingDataRemover::TimePeriod period,
656 BrowsingDataRemover* remover = BrowsingDataRemover::CreateForPeriod
    [all...]
browsing_data_remover.cc 90 bool BrowsingDataRemover::is_removing_ = false;
92 // Helper to create callback for BrowsingDataRemover::DoesOriginMatchMask.
102 BrowsingDataRemover::NotificationDetails::NotificationDetails()
108 BrowsingDataRemover::NotificationDetails::NotificationDetails(
109 const BrowsingDataRemover::NotificationDetails& details)
115 BrowsingDataRemover::NotificationDetails::NotificationDetails(
124 BrowsingDataRemover::NotificationDetails::~NotificationDetails() {}
127 BrowsingDataRemover* BrowsingDataRemover::CreateForUnboundedRange(
129 return new BrowsingDataRemover(profile, base::Time(), base::Time::Max())
    [all...]
browsing_data_remover_browsertest.cc 89 BrowsingDataRemover* remover = BrowsingDataRemover::CreateForPeriod(
90 browser()->profile(), BrowsingDataRemover::LAST_HOUR);
96 // Test BrowsingDataRemover for downloads.
99 RemoveAndWait(BrowsingDataRemover::REMOVE_DOWNLOADS);
106 // Test BrowsingDataRemover for prohibited downloads. Note that this only
113 RemoveAndWait(BrowsingDataRemover::REMOVE_DOWNLOADS);
128 RemoveAndWait(BrowsingDataRemover::REMOVE_SITE_DATA);
browsing_data_remover.h 53 // BrowsingDataRemover is responsible for removing data related to browsing:
56 class BrowsingDataRemover
110 // When BrowsingDataRemover successfully removes data, a notification of type
141 // Creates a BrowsingDataRemover object that removes data regardless of the
142 // time it was last modified. Returns a raw pointer, as BrowsingDataRemover
144 static BrowsingDataRemover* CreateForUnboundedRange(Profile* profile);
146 // Creates a BrowsingDataRemover object bound on both sides by a time. Returns
147 // a raw pointer, as BrowsingDataRemover retains ownership of itself, and
149 static BrowsingDataRemover* CreateForRange(Profile* profile,
153 // Creates a BrowsingDataRemover bound to a specific period of time (a
    [all...]
  /external/chromium_org/chrome_frame/
delete_chrome_history.cc 83 remove_mask_ |= BrowsingDataRemover::REMOVE_SITE_DATA;
85 remove_mask_ |= BrowsingDataRemover::REMOVE_CACHE;
87 remove_mask_ |= BrowsingDataRemover::REMOVE_FORM_DATA;
89 remove_mask_ |= BrowsingDataRemover::REMOVE_PASSWORDS;
91 remove_mask_ |= BrowsingDataRemover::REMOVE_HISTORY;
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter.h 21 public BrowsingDataRemover::Observer {
69 // BrowsingDataRemover::Observer:
86 // If non-null it means removal is in progress. BrowsingDataRemover takes care
88 BrowsingDataRemover* cookies_remover_;
profile_resetter.cc 192 cookies_remover_ = BrowsingDataRemover::CreateForUnboundedRange(profile_);
194 int remove_mask = BrowsingDataRemover::REMOVE_SITE_DATA |
195 BrowsingDataRemover::REMOVE_CACHE;
200 remove_mask &= ~BrowsingDataRemover::REMOVE_PLUGIN_DATA;
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
enrollment_screen_handler.h 30 public BrowsingDataRemover::Observer {
59 // Implements BrowsingDataRemover::Observer:
109 BrowsingDataRemover* browsing_data_remover_;
enrollment_screen_handler.cc 153 BrowsingDataRemover::CreateForUnboundedRange(profile);
155 browsing_data_remover_->Remove(BrowsingDataRemover::REMOVE_SITE_DATA,
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_helper.cc 158 BrowsingDataRemover* remover =
159 BrowsingDataRemover::CreateForUnboundedRange(GetSigninProfile());
161 remover->Remove(BrowsingDataRemover::REMOVE_SITE_DATA,
166 // ProfileHelper, BrowsingDataRemover::Observer implementation:
profile_helper.h 33 class ProfileHelper : public BrowsingDataRemover::Observer,
87 // BrowsingDataRemover::Observer implementation:
  /external/chromium_org/chrome/browser/android/signin/
signin_manager_android.cc 43 // A BrowsingDataRemover::Observer that clears all Profile data and then
45 class ProfileDataRemover : public BrowsingDataRemover::Observer {
50 remover_(BrowsingDataRemover::CreateForUnboundedRange(profile)) {
52 remover_->Remove(BrowsingDataRemover::REMOVE_ALL, BrowsingDataHelper::ALL);
66 BrowsingDataRemover* remover_;
  /external/chromium_org/chrome/browser/automation/
automation_provider.cc 689 BrowsingDataRemover* remover;
690 remover = BrowsingDataRemover::CreateForUnboundedRange(profile());
692 // BrowsingDataRemover deletes itself.
  /external/chromium/chrome/browser/automation/
automation_provider.cc 725 BrowsingDataRemover* remover;
726 remover = new BrowsingDataRemover(profile(),
727 BrowsingDataRemover::EVERYTHING, // All time periods.
730 // BrowsingDataRemover deletes itself.
    [all...]
testing_automation_provider.cc     [all...]
  /external/chromium_org/chrome/browser/ui/
browser_commands.cc     [all...]

Completed in 1808 milliseconds

1 2