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

Side by Side Diff: net/reporting/reporting_browsing_data_remover.h

Issue 2752523005: Reporting: Implement browsing data remover. (Closed)
Patch Set: Move after Context CL. 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 NET_REPORTING_REPORTING_BROWSING_DATA_REMOVER_H_
6 #define NET_REPORTING_REPORTING_BROWSING_DATA_REMOVER_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "net/base/net_export.h"
11 #include "url/gurl.h"
12
13 namespace net {
14
15 class ReportingContext;
16
17 class NET_EXPORT ReportingBrowsingDataRemover {
shivanisha 2017/04/07 15:10:30 Comment describing the overall purpose of the clas
Julia Tuttle 2017/04/07 16:25:10 Done.
18 public:
19 static void RemoveBrowsingData(
20 ReportingContext* context,
21 bool remove_reports,
22 bool remove_clients,
23 base::Callback<bool(const GURL&)> origin_filter);
24
25 private:
26 DISALLOW_IMPLICIT_CONSTRUCTORS(ReportingBrowsingDataRemover);
27 };
28
29 } // namespace net
30
31 #endif // NET_REPORTING_REPORTING_BROWSING_DATA_REMOVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698