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