| 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; | 513 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; |
| 514 void didChangeName(const blink::WebString& name, | 514 void didChangeName(const blink::WebString& name, |
| 515 const blink::WebString& unique_name) override; | 515 const blink::WebString& unique_name) override; |
| 516 void didEnforceInsecureRequestPolicy( | 516 void didEnforceInsecureRequestPolicy( |
| 517 blink::WebInsecureRequestPolicy policy) override; | 517 blink::WebInsecureRequestPolicy policy) override; |
| 518 void didUpdateToUniqueOrigin( | 518 void didUpdateToUniqueOrigin( |
| 519 bool is_potentially_trustworthy_unique_origin) override; | 519 bool is_potentially_trustworthy_unique_origin) override; |
| 520 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 520 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
| 521 blink::WebSandboxFlags flags) override; | 521 blink::WebSandboxFlags flags) override; |
| 522 void didSetFeaturePolicyHeader( | 522 void didSetFeaturePolicyHeader( |
| 523 const blink::WebParsedFeaturePolicyHeader& parsed_header) override; | 523 const blink::WebParsedFeaturePolicy& parsed_header) override; |
| 524 void didAddContentSecurityPolicy( | 524 void didAddContentSecurityPolicy( |
| 525 const blink::WebString& header_value, | 525 const blink::WebString& header_value, |
| 526 blink::WebContentSecurityPolicyType type, | 526 blink::WebContentSecurityPolicyType type, |
| 527 blink::WebContentSecurityPolicySource source, | 527 blink::WebContentSecurityPolicySource source, |
| 528 const std::vector<blink::WebContentSecurityPolicyPolicy>&) override; | 528 const std::vector<blink::WebContentSecurityPolicyPolicy>&) override; |
| 529 void didChangeFrameOwnerProperties( | 529 void didChangeFrameOwnerProperties( |
| 530 blink::WebFrame* child_frame, | 530 blink::WebFrame* child_frame, |
| 531 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 531 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 532 void didMatchCSS( | 532 void didMatchCSS( |
| 533 blink::WebLocalFrame* frame, | 533 blink::WebLocalFrame* frame, |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 int enabled_bindings_ = 0; | 1395 int enabled_bindings_ = 0; |
| 1396 | 1396 |
| 1397 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1397 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1398 | 1398 |
| 1399 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1399 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1400 }; | 1400 }; |
| 1401 | 1401 |
| 1402 } // namespace content | 1402 } // namespace content |
| 1403 | 1403 |
| 1404 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1404 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |