blob: 957753b1a9a73ed9fb584166b3abf18438e32c70 [file] [log] [blame]
anantae60d1d42017-06-20 04:16:271// 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
Kinuko Yasuda7f3e1722018-03-26 08:58:585#include "content/browser/loader/navigation_loader_interceptor.h"
anantae60d1d42017-06-20 04:16:276
Kinuko Yasuda250577c2017-10-29 02:51:247#include "content/common/navigation_subresource_loader_params.h"
8
anantae60d1d42017-06-20 04:16:279namespace content {
10
Kinuko Yasuda250577c2017-10-29 02:51:2411base::Optional<SubresourceLoaderParams>
Kinuko Yasuda7f3e1722018-03-26 08:58:5812NavigationLoaderInterceptor::MaybeCreateSubresourceLoaderParams() {
Kinuko Yasuda250577c2017-10-29 02:51:2413 return base::nullopt;
anantae60d1d42017-06-20 04:16:2714}
15
Kinuko Yasuda7f3e1722018-03-26 08:58:5816bool NavigationLoaderInterceptor::MaybeCreateLoaderForResponse(
John Abd-El-Malek46248032018-01-17 19:11:2317 const network::ResourceResponseHead& response,
John Abd-El-Malekb165dc52018-01-18 17:12:1818 network::mojom::URLLoaderPtr* loader,
Tsuyoshi Horob8d512a2018-01-25 17:01:5919 network::mojom::URLLoaderClientRequest* client_request,
20 ThrottlingURLLoader* url_loader) {
anantab9800e52017-07-29 18:04:1321 return false;
22}
23
Kinuko Yasuda250577c2017-10-29 02:51:2424} // namespace content