Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Side by Side Diff: chrome/browser/browsing_data/browsing_data_important_sites_util.h

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: remove favicon Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 "chrome/browser/browsing_data/browsing_data_remover.h"
9 #include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h"
10 #include "components/browsing_data/core/browsing_data_utils.h"
11
12 namespace content {
13 class BrowsingDataFilterBuilder;
14 }
15
16 namespace browsing_data_important_sites_util {
17
18 // Deletes the types protected by Important Sites with a filter, and the rest
dschuyler 2017/04/27 23:10:25 Does this delete the types that 'are' or 'are not'
dullweber 2017/04/28 12:34:03 This deletes data from types that are considered i
19 // completely. The observer will be called twice.
20 void Remove(int remove_mask,
21 int origin_mask,
22 browsing_data::TimePeriod time_period,
23 std::unique_ptr<content::BrowsingDataFilterBuilder> filter_builder,
24 BrowsingDataRemover* remover,
25 BrowsingDataRemover::Observer* observer);
26
27 } // namespace browsing_data_important_sites_util
28
29 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_IMPORTANT_SITES_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698