blob: 6a58de85b1556c044bf6840fa6d19d1fa6739db0 [file] [log] [blame]
// Copyright 2019 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 ANDROID_WEBVIEW_BROWSER_NETWORK_SERVICE_AW_URL_LOADER_THROTTLE_H_
#define ANDROID_WEBVIEW_BROWSER_NETWORK_SERVICE_AW_URL_LOADER_THROTTLE_H_
#include "base/macros.h"
#include "third_party/blink/public/common/loader/url_loader_throttle.h"
class GURL;
namespace net {
class HttpRequestHeaders;
}
namespace android_webview {
class AwResourceContext;
class AwURLLoaderThrottle : public blink::URLLoaderThrottle {
public:
explicit AwURLLoaderThrottle(AwResourceContext* aw_resource_context);
~AwURLLoaderThrottle() override;
// blink::URLLoaderThrottle implementation:
void WillStartRequest(network::ResourceRequest* request,
bool* defer) override;
void WillRedirectRequest(
net::RedirectInfo* redirect_info,
const network::ResourceResponseHead& response_head,
bool* defer,
std::vector<std::string>* to_be_removed_request_headers,
net::HttpRequestHeaders* modified_request_headers) override;
private:
void AddExtraHeadersIfNeeded(const GURL& url,
net::HttpRequestHeaders* headers);
AwResourceContext* aw_resource_context_;
DISALLOW_COPY_AND_ASSIGN(AwURLLoaderThrottle);
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_BROWSER_NETWORK_SERVICE_AW_URL_LOADER_THROTTLE_H_