blob: d8a6f9fc66850ca06fe128a78afede00809d5307 [file] [log] [blame]
jam17d386e2017-05-10 16:40:041// 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 CONTENT_BROWSER_HISTOGRAM_INTERNALS_URL_LOADER_H_
6#define CONTENT_BROWSER_HISTOGRAM_INTERNALS_URL_LOADER_H_
7
Ken Rockot54311e62018-02-10 19:01:528#include "services/network/public/mojom/url_loader.mojom.h"
jam17d386e2017-05-10 16:40:049
10namespace content {
11
12// Creates the data for chrome://histograms.
John Abd-El-Malekb165dc52018-01-18 17:12:1813void StartHistogramInternalsURLLoader(
14 const network::ResourceRequest& request,
15 network::mojom::URLLoaderClientPtr client);
jam17d386e2017-05-10 16:40:0416} // namespace content
17
18#endif // CONTENT_BROWSER_HISTOGRAM_INTERNALS_URL_LOADER_H_