Chromium Code Reviews| Index: chrome/browser/safe_browsing/permission_reporter.h |
| diff --git a/chrome/browser/safe_browsing/permission_reporter.h b/chrome/browser/safe_browsing/permission_reporter.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f9f934c7e43005f3783f4dddd8565cb120b6f45c |
| --- /dev/null |
| +++ b/chrome/browser/safe_browsing/permission_reporter.h |
| @@ -0,0 +1,57 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_SAFE_BROWSING_PERMISSION_REPORTER_H_ |
| +#define CHROME_BROWSER_SAFE_BROWSING_PERMISSION_REPORTER_H_ |
| + |
| +#include <string> |
| + |
| +#include "chrome/browser/permissions/permission_uma_util.h" |
| +#include "net/url_request/certificate_report_sender.h" |
| +#include "url/gurl.h" |
| + |
| +namespace net { |
| +class URLRequestContext; |
| +} // namespace net |
| + |
| +namespace safe_browsing { |
| + |
| +// Provides functionality for building and serializing reports about permissions |
| +// to a report collection server. |
| +class PermissionReporter { |
| + public: |
| + // Creates a permission reporter that will send permission reports to |
| + // |upload_url|, using |request_context| as the context for the reports. |
| + PermissionReporter(net::URLRequestContext* request_context, |
| + const GURL& upload_url); |
| + |
| + ~PermissionReporter(); |
| + |
| + // Sends a permission report to the report collection server. The |
| + // |serialized_report| is expected to be a serialized protobuf of type |
| + // PermissionReport defined in |
| + // //src/chrome/common/safe_browsing/permission_report.proto |
| + void SendReport(const std::string& serialized_report); |
| + |
| + // Builds and serializes a permission report with |origin| as the origin of |
| + // the site requesting permission, |permission| as the type of permission |
| + // requested, and |action| as the action taken. The serialized report is |
| + // written into |output|. Returns true if the serialization was successful and |
| + // false otherwise. |
| + static bool BuildReport(const GURL& origin, |
| + content::PermissionType permission, |
| + PermissionAction action, |
| + std::string* output); |
| + |
| + private: |
| + std::unique_ptr<net::CertificateReportSender> permission_report_sender_; |
|
Nathan Parker
2016/05/31 22:24:57
I think we should do some refactoring before than
stefanocs
2016/06/01 01:36:34
Done.
|
| + |
| + const GURL upload_url_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(PermissionReporter); |
| +}; |
| + |
| +} // namespace safe_browsing |
| + |
| +#endif // CHROME_BROWSER_SAFE_BROWSING_PERMISSION_REPORTER_H_ |