| Index: chrome/browser/safe_browsing/permission_reporter.cc
|
| diff --git a/chrome/browser/safe_browsing/permission_reporter.cc b/chrome/browser/safe_browsing/permission_reporter.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..420170ec322840a7c046832b895a6d7cab5ee991
|
| --- /dev/null
|
| +++ b/chrome/browser/safe_browsing/permission_reporter.cc
|
| @@ -0,0 +1,36 @@
|
| +// 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.
|
| +
|
| +#include "chrome/browser/safe_browsing/permission_reporter.h"
|
| +#include "chrome/common/safe_browsing/permission_report.pb.h"
|
| +
|
| +using content::PermissionType;
|
| +
|
| +namespace safe_browsing {
|
| +
|
| +PermissionReporter::PermissionReporter(net::URLRequestContext* request_context,
|
| + const GURL& upload_url)
|
| + : permission_report_sender_(new net::CertificateReportSender(
|
| + request_context,
|
| + net::CertificateReportSender::CookiesPreference::
|
| + DO_NOT_SEND_COOKIES)),
|
| + upload_url_(upload_url) {
|
| + DCHECK(permission_report_sender_);
|
| + DCHECK(!upload_url.is_empty());
|
| +}
|
| +
|
| +PermissionReporter::~PermissionReporter() {}
|
| +
|
| +void PermissionReporter::SendReport(const std::string& serialized_report) {
|
| + // TODO(stefanocs): Implement SendReport function.
|
| +}
|
| +
|
| +std::string PermissionReporter::BuildReport(const GURL& origin,
|
| + PermissionType permission,
|
| + PermissionAction action) {
|
| + // TODO(stefanocs): Implement BuildReport function.
|
| + return "";
|
| +}
|
| +
|
| +} // namespace safe_browsing
|
|
|