| 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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 blink::WebSandboxFlags sandbox_flags, | 477 blink::WebSandboxFlags sandbox_flags, |
| 478 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 478 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 479 void didChangeOpener(blink::WebFrame* frame) override; | 479 void didChangeOpener(blink::WebFrame* frame) override; |
| 480 void frameDetached(blink::WebLocalFrame* frame, DetachType type) override; | 480 void frameDetached(blink::WebLocalFrame* frame, DetachType type) override; |
| 481 void frameFocused() override; | 481 void frameFocused() override; |
| 482 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; | 482 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; |
| 483 void didChangeName(const blink::WebString& name, | 483 void didChangeName(const blink::WebString& name, |
| 484 const blink::WebString& unique_name) override; | 484 const blink::WebString& unique_name) override; |
| 485 void didEnforceInsecureRequestPolicy( | 485 void didEnforceInsecureRequestPolicy( |
| 486 blink::WebInsecureRequestPolicy policy) override; | 486 blink::WebInsecureRequestPolicy policy) override; |
| 487 void didEnforceInsecureNavigationsSet( |
| 488 const std::vector<uint32_t>& set) override; |
| 487 void didUpdateToUniqueOrigin( | 489 void didUpdateToUniqueOrigin( |
| 488 bool is_potentially_trustworthy_unique_origin) override; | 490 bool is_potentially_trustworthy_unique_origin) override; |
| 489 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 491 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
| 490 blink::WebSandboxFlags flags) override; | 492 blink::WebSandboxFlags flags) override; |
| 491 void didSetFeaturePolicyHeader( | 493 void didSetFeaturePolicyHeader( |
| 492 const blink::WebParsedFeaturePolicy& parsed_header) override; | 494 const blink::WebParsedFeaturePolicy& parsed_header) override; |
| 493 void didAddContentSecurityPolicy( | 495 void didAddContentSecurityPolicy( |
| 494 const blink::WebString& header_value, | 496 const blink::WebString& header_value, |
| 495 blink::WebContentSecurityPolicyType type, | 497 blink::WebContentSecurityPolicyType type, |
| 496 blink::WebContentSecurityPolicySource source) override; | 498 blink::WebContentSecurityPolicySource source) override; |
| (...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 bool browser_side_navigation_pending_ = false; | 1346 bool browser_side_navigation_pending_ = false; |
| 1345 | 1347 |
| 1346 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1348 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1347 | 1349 |
| 1348 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1350 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1349 }; | 1351 }; |
| 1350 | 1352 |
| 1351 } // namespace content | 1353 } // namespace content |
| 1352 | 1354 |
| 1353 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1355 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |