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

Unified Diff: content/browser/net/reporting_service_proxy.h

Issue 2881593002: Reporting: Plumb into RenderFrame via Mojo (Closed)
Patch Set: Move ReportingServiceProxy to renderer_host, .mojom to Blink. Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/net/reporting_service_proxy.h
diff --git a/content/browser/net/reporting_service_proxy.h b/content/browser/net/reporting_service_proxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..b21e88097ddec9904f2e063630c2a13d25e136cb
--- /dev/null
+++ b/content/browser/net/reporting_service_proxy.h
@@ -0,0 +1,25 @@
+// 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 "content/common/net/reporting.mojom.h"
+
+namespace service_manager {
+struct BindSourceInfo;
+} // namespace service_manager
+
+namespace content {
+
+class StoragePartition;
+
+void CreateReportingServiceProxy(
+ StoragePartition* storage_partition,
+ const service_manager::BindSourceInfo& source_info,
+ mojom::ReportingServiceProxyRequest request);
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_NET_REPORTING_SERVICE_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698