blob: cbd9a36355e1dec20d37950e89a12ec2351687eb [file] [log] [blame]
// Copyright 2017 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 CONTENT_BROWSER_NET_REPORTING_SERVICE_PROXY_H_
#define CONTENT_BROWSER_NET_REPORTING_SERVICE_PROXY_H_
#include "third_party/blink/public/platform/reporting.mojom.h"
namespace content {
// Binds a mojom::ReportingServiceProxy to |request| that queues reports using
// |render_process_id|'s NetworkContext. This must be called on the UI thread.
void CreateReportingServiceProxy(
int render_process_id,
blink::mojom::ReportingServiceProxyRequest request);
} // namespace content
#endif // CONTENT_BROWSER_NET_REPORTING_SERVICE_PROXY_H_