| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; | 499 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; |
| 500 void didChangeName(const blink::WebString& name, | 500 void didChangeName(const blink::WebString& name, |
| 501 const blink::WebString& unique_name) override; | 501 const blink::WebString& unique_name) override; |
| 502 void didEnforceInsecureRequestPolicy( | 502 void didEnforceInsecureRequestPolicy( |
| 503 blink::WebInsecureRequestPolicy policy) override; | 503 blink::WebInsecureRequestPolicy policy) override; |
| 504 void didUpdateToUniqueOrigin( | 504 void didUpdateToUniqueOrigin( |
| 505 bool is_potentially_trustworthy_unique_origin) override; | 505 bool is_potentially_trustworthy_unique_origin) override; |
| 506 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 506 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
| 507 blink::WebSandboxFlags flags) override; | 507 blink::WebSandboxFlags flags) override; |
| 508 void didSetFeaturePolicyHeader( | 508 void didSetFeaturePolicyHeader( |
| 509 const blink::WebParsedFeaturePolicy& parsed_header) override; | 509 const blink::WebParsedFeaturePolicyHeader& parsed_header) override; |
| 510 void didAddContentSecurityPolicy( | 510 void didAddContentSecurityPolicy( |
| 511 const blink::WebString& header_value, | 511 const blink::WebString& header_value, |
| 512 blink::WebContentSecurityPolicyType type, | 512 blink::WebContentSecurityPolicyType type, |
| 513 blink::WebContentSecurityPolicySource source) override; | 513 blink::WebContentSecurityPolicySource source) override; |
| 514 void didChangeFrameOwnerProperties( | 514 void didChangeFrameOwnerProperties( |
| 515 blink::WebFrame* child_frame, | 515 blink::WebFrame* child_frame, |
| 516 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 516 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 517 void didMatchCSS( | 517 void didMatchCSS( |
| 518 blink::WebLocalFrame* frame, | 518 blink::WebLocalFrame* frame, |
| 519 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 519 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 bool browser_side_navigation_pending_ = false; | 1377 bool browser_side_navigation_pending_ = false; |
| 1378 | 1378 |
| 1379 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1379 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1380 | 1380 |
| 1381 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1381 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1382 }; | 1382 }; |
| 1383 | 1383 |
| 1384 } // namespace content | 1384 } // namespace content |
| 1385 | 1385 |
| 1386 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1386 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |