OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 void frameFocused() override; | 482 void frameFocused() override; |
483 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; | 483 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; |
484 void didChangeName(const blink::WebString& name, | 484 void didChangeName(const blink::WebString& name, |
485 const blink::WebString& unique_name) override; | 485 const blink::WebString& unique_name) override; |
486 void didEnforceInsecureRequestPolicy( | 486 void didEnforceInsecureRequestPolicy( |
487 blink::WebInsecureRequestPolicy policy) override; | 487 blink::WebInsecureRequestPolicy policy) override; |
488 void didUpdateToUniqueOrigin( | 488 void didUpdateToUniqueOrigin( |
489 bool is_potentially_trustworthy_unique_origin) override; | 489 bool is_potentially_trustworthy_unique_origin) override; |
490 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 490 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
491 blink::WebSandboxFlags flags) override; | 491 blink::WebSandboxFlags flags) override; |
| 492 void didSetFeaturePolicyHeader(const blink::WebString& header_value) override; |
492 void didAddContentSecurityPolicy( | 493 void didAddContentSecurityPolicy( |
493 const blink::WebString& header_value, | 494 const blink::WebString& header_value, |
494 blink::WebContentSecurityPolicyType type, | 495 blink::WebContentSecurityPolicyType type, |
495 blink::WebContentSecurityPolicySource source) override; | 496 blink::WebContentSecurityPolicySource source) override; |
496 void didChangeFrameOwnerProperties( | 497 void didChangeFrameOwnerProperties( |
497 blink::WebFrame* child_frame, | 498 blink::WebFrame* child_frame, |
498 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 499 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
499 void didMatchCSS( | 500 void didMatchCSS( |
500 blink::WebLocalFrame* frame, | 501 blink::WebLocalFrame* frame, |
501 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 502 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1331 bool browser_side_navigation_pending_ = false; | 1332 bool browser_side_navigation_pending_ = false; |
1332 | 1333 |
1333 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1334 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1334 | 1335 |
1335 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1336 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1336 }; | 1337 }; |
1337 | 1338 |
1338 } // namespace content | 1339 } // namespace content |
1339 | 1340 |
1340 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1341 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |