1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
fuchsia_web / webengine / renderer / web_engine_url_loader_throttle_provider.h [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FUCHSIA_WEB_WEBENGINE_RENDERER_WEB_ENGINE_URL_LOADER_THROTTLE_PROVIDER_H_
#define FUCHSIA_WEB_WEBENGINE_RENDERER_WEB_ENGINE_URL_LOADER_THROTTLE_PROVIDER_H_
#include "base/memory/raw_ptr.h"
#include "base/sequence_checker.h"
#include "third_party/blink/public/platform/url_loader_throttle_provider.h"
class WebEngineContentRendererClient;
// Implements a URLLoaderThrottleProvider for the WebEngine. Creates
// URLLoaderThrottles, implemented as WebEngineURLLoaderThrottles for network
// requests.
class WebEngineURLLoaderThrottleProvider
: public blink::URLLoaderThrottleProvider {
public:
explicit WebEngineURLLoaderThrottleProvider(
const WebEngineContentRendererClient* const content_renderer_client);
WebEngineURLLoaderThrottleProvider(
const WebEngineURLLoaderThrottleProvider&) = delete;
WebEngineURLLoaderThrottleProvider& operator=(
const WebEngineURLLoaderThrottleProvider&) = delete;
~WebEngineURLLoaderThrottleProvider() override;
// blink::URLLoaderThrottleProvider implementation.
std::unique_ptr<blink::URLLoaderThrottleProvider> Clone() override;
blink::WebVector<std::unique_ptr<blink::URLLoaderThrottle>> CreateThrottles(
base::optional_ref<const blink::LocalFrameToken> local_frame_token,
const network::ResourceRequest& request) override;
void SetOnline(bool is_online) override;
private:
const raw_ptr<const WebEngineContentRendererClient> content_renderer_client_;
SEQUENCE_CHECKER(sequence_checker_);
};
#endif // FUCHSIA_WEB_WEBENGINE_RENDERER_WEB_ENGINE_URL_LOADER_THROTTLE_PROVIDER_H_