
And any struct_traits => mojom_traits Brought to you by grep and sed TBR=dcheng@chromium.org TBR=jam@chromium.org Bug: 806965 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo;master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I3782b0e0fbfe438678a9aeeaefd2922fbd19d0eb Reviewed-on: https://chromium-review.googlesource.com/912511 Reviewed-by: Ken Rockot <rockot@chromium.org> Commit-Queue: Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#535985}
19 lines
628 B
C++
19 lines
628 B
C++
// 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_HISTOGRAM_INTERNALS_URL_LOADER_H_
|
|
#define CONTENT_BROWSER_HISTOGRAM_INTERNALS_URL_LOADER_H_
|
|
|
|
#include "services/network/public/mojom/url_loader.mojom.h"
|
|
|
|
namespace content {
|
|
|
|
// Creates the data for chrome://histograms.
|
|
void StartHistogramInternalsURLLoader(
|
|
const network::ResourceRequest& request,
|
|
network::mojom::URLLoaderClientPtr client);
|
|
} // namespace content
|
|
|
|
#endif // CONTENT_BROWSER_HISTOGRAM_INTERNALS_URL_LOADER_H_
|