| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 void frameFocused() override; | 485 void frameFocused() override; |
| 486 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; | 486 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; |
| 487 void didChangeName(const blink::WebString& name, | 487 void didChangeName(const blink::WebString& name, |
| 488 const blink::WebString& unique_name) override; | 488 const blink::WebString& unique_name) override; |
| 489 void didEnforceInsecureRequestPolicy( | 489 void didEnforceInsecureRequestPolicy( |
| 490 blink::WebInsecureRequestPolicy policy) override; | 490 blink::WebInsecureRequestPolicy policy) override; |
| 491 void didUpdateToUniqueOrigin( | 491 void didUpdateToUniqueOrigin( |
| 492 bool is_potentially_trustworthy_unique_origin) override; | 492 bool is_potentially_trustworthy_unique_origin) override; |
| 493 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 493 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
| 494 blink::WebSandboxFlags flags) override; | 494 blink::WebSandboxFlags flags) override; |
| 495 void didSetFeaturePolicyHeader(const blink::WebString& header_value) override; |
| 495 void didAddContentSecurityPolicy( | 496 void didAddContentSecurityPolicy( |
| 496 const blink::WebString& header_value, | 497 const blink::WebString& header_value, |
| 497 blink::WebContentSecurityPolicyType type, | 498 blink::WebContentSecurityPolicyType type, |
| 498 blink::WebContentSecurityPolicySource source) override; | 499 blink::WebContentSecurityPolicySource source) override; |
| 499 void didChangeFrameOwnerProperties( | 500 void didChangeFrameOwnerProperties( |
| 500 blink::WebFrame* child_frame, | 501 blink::WebFrame* child_frame, |
| 501 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 502 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 502 void didMatchCSS( | 503 void didMatchCSS( |
| 503 blink::WebLocalFrame* frame, | 504 blink::WebLocalFrame* frame, |
| 504 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 505 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 bool browser_side_navigation_pending_ = false; | 1342 bool browser_side_navigation_pending_ = false; |
| 1342 | 1343 |
| 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1344 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1344 | 1345 |
| 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1346 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1346 }; | 1347 }; |
| 1347 | 1348 |
| 1348 } // namespace content | 1349 } // namespace content |
| 1349 | 1350 |
| 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1351 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |