forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_hints_controller_delegate.h
79 lines (59 loc) · 2.76 KB
/
client_hints_controller_delegate.h
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright 2018 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_PUBLIC_BROWSER_CLIENT_HINTS_CONTROLLER_DELEGATE_H_
#define CONTENT_PUBLIC_BROWSER_CLIENT_HINTS_CONTROLLER_DELEGATE_H_
#include <memory>
#include "base/time/time.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_context.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "third_party/blink/public/common/client_hints/enabled_client_hints.h"
#include "url/origin.h"
class GURL;
namespace blink {
class EnabledClientHints;
struct UserAgentMetadata;
} // namespace blink
namespace network {
class NetworkQualityTracker;
} // namespace network
namespace content {
class RenderFrameHost;
class CONTENT_EXPORT ClientHintsControllerDelegate {
public:
virtual ~ClientHintsControllerDelegate() = default;
virtual network::NetworkQualityTracker* GetNetworkQualityTracker() = 0;
// Get which client hints opt-ins were persisted on current origin.
virtual void GetAllowedClientHintsFromSource(
const url::Origin& origin,
blink::EnabledClientHints* client_hints) = 0;
// Checks is script is enabled. |parent_rfh| is the document embedding the
// frame in which the request is taking place (it is null for outermost main
// frame requests).
virtual bool IsJavaScriptAllowed(const GURL& url,
RenderFrameHost* parent_rfh) = 0;
// Returns true iff cookies are blocked for the URL or third-party cookies
// are disabled in the user agent.
virtual bool AreThirdPartyCookiesBlocked(const GURL& url) = 0;
virtual blink::UserAgentMetadata GetUserAgentMetadata() = 0;
virtual void PersistClientHints(
const url::Origin& primary_origin,
RenderFrameHost* parent_rfh,
const std::vector<network::mojom::WebClientHintsType>& client_hints) = 0;
// Optionally implemented by implementations used in tests. Clears all hints
// that would have been returned by GetAllowedClientHintsFromSource(),
// regardless of whether they were added via PersistClientHints() or
// SetAdditionalHints().
virtual void ResetForTesting() {}
// Sets additional `hints` that this delegate should add to the
// blink::EnabledClientHints object affected by
// |GetAllowedClientHintsFromSource|. This is for when there are additional
// client hints to be added to a request that are not in storage.
virtual void SetAdditionalClientHints(
const std::vector<network::mojom::WebClientHintsType>&) = 0;
// Clears the additional hints set by |SetAdditionalHints|.
virtual void ClearAdditionalClientHints() = 0;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_CLIENT_HINTS_CONTROLLER_DELEGATE_H_