OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_IMPORTANT_SITES_UTIL_H_ |
| 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_IMPORTANT_SITES_UTIL_H_ |
| 7 |
| 8 #include <vector> |
| 9 |
| 10 #include "chrome/browser/browsing_data/browsing_data_remover.h" |
| 11 #include "components/browsing_data/core/browsing_data_utils.h" |
| 12 |
| 13 namespace content { |
| 14 class BrowsingDataFilterBuilder; |
| 15 } |
| 16 |
| 17 namespace browsing_data_important_sites_util { |
| 18 |
| 19 // Deletes the types protected by Important Sites with a filter, and the rest |
| 20 // completely. The observer will be called twice. |
| 21 void Remove(int remove_mask, |
| 22 int origin_mask, |
| 23 browsing_data::TimePeriod time_period, |
| 24 std::unique_ptr<content::BrowsingDataFilterBuilder> filter_builder, |
| 25 BrowsingDataRemover* remover, |
| 26 BrowsingDataRemover::Observer* observer); |
| 27 |
| 28 } // namespace browsing_data_important_sites_util |
| 29 |
| 30 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_IMPORTANT_SITES_UTIL_H_ |
OLD | NEW |