OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/common/frame_replication_state.h" | 5 #include "content/common/frame_replication_state.h" |
6 | 6 |
7 #include "third_party/WebKit/public/web/WebSandboxFlags.h" | 7 #include "third_party/WebKit/public/web/WebSandboxFlags.h" |
8 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 8 #include "third_party/WebKit/public/web/WebTreeScopeType.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
11 | 11 |
12 FeaturePolicyParsedWhitelist::FeaturePolicyParsedWhitelist() | 12 FeaturePolicyParsedWhitelist::FeaturePolicyParsedWhitelist() |
13 : matches_all_origins(false) {} | 13 : matches_all_origins(false) {} |
14 | 14 |
15 FeaturePolicyParsedWhitelist::FeaturePolicyParsedWhitelist( | 15 FeaturePolicyParsedWhitelist::FeaturePolicyParsedWhitelist( |
16 const FeaturePolicyParsedWhitelist& fppw) = default; | 16 const FeaturePolicyParsedWhitelist& fppw) = default; |
17 | 17 |
18 FeaturePolicyParsedWhitelist::~FeaturePolicyParsedWhitelist() {} | 18 FeaturePolicyParsedWhitelist::~FeaturePolicyParsedWhitelist() {} |
19 | 19 |
20 FrameReplicationState::FrameReplicationState() | 20 FrameReplicationState::FrameReplicationState() |
21 : sandbox_flags(blink::WebSandboxFlags::None), | 21 : sandbox_flags(blink::WebSandboxFlags::None), |
22 scope(blink::WebTreeScopeType::Document), | 22 scope(blink::WebTreeScopeType::Document), |
23 insecure_request_policy(blink::kLeaveInsecureRequestsAlone), | 23 insecure_request_policy(blink::kLeaveInsecureRequestsAlone), |
24 has_potentially_trustworthy_unique_origin(false) {} | 24 has_potentially_trustworthy_unique_origin(false), |
| 25 has_received_user_gesture(false) {} |
25 | 26 |
26 FrameReplicationState::FrameReplicationState( | 27 FrameReplicationState::FrameReplicationState( |
27 blink::WebTreeScopeType scope, | 28 blink::WebTreeScopeType scope, |
28 const std::string& name, | 29 const std::string& name, |
29 const std::string& unique_name, | 30 const std::string& unique_name, |
30 blink::WebSandboxFlags sandbox_flags, | 31 blink::WebSandboxFlags sandbox_flags, |
31 blink::WebInsecureRequestPolicy insecure_request_policy, | 32 blink::WebInsecureRequestPolicy insecure_request_policy, |
32 bool has_potentially_trustworthy_unique_origin) | 33 bool has_potentially_trustworthy_unique_origin, |
| 34 bool has_received_user_gesture) |
33 : origin(), | 35 : origin(), |
34 sandbox_flags(sandbox_flags), | 36 sandbox_flags(sandbox_flags), |
35 name(name), | 37 name(name), |
36 unique_name(unique_name), | 38 unique_name(unique_name), |
37 scope(scope), | 39 scope(scope), |
38 insecure_request_policy(insecure_request_policy), | 40 insecure_request_policy(insecure_request_policy), |
39 has_potentially_trustworthy_unique_origin( | 41 has_potentially_trustworthy_unique_origin( |
40 has_potentially_trustworthy_unique_origin) {} | 42 has_potentially_trustworthy_unique_origin), |
| 43 has_received_user_gesture(has_received_user_gesture) {} |
41 | 44 |
42 FrameReplicationState::FrameReplicationState( | 45 FrameReplicationState::FrameReplicationState( |
43 const FrameReplicationState& other) = default; | 46 const FrameReplicationState& other) = default; |
44 | 47 |
45 FrameReplicationState::~FrameReplicationState() { | 48 FrameReplicationState::~FrameReplicationState() { |
46 } | 49 } |
47 | 50 |
48 } // namespace content | 51 } // namespace content |
OLD | NEW |