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