| 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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 uint32_t start_offset, | 659 uint32_t start_offset, |
| 660 uint32_t end_offset); | 660 uint32_t end_offset); |
| 661 void OnFocusedFormFieldDataResponse(int request_id, | 661 void OnFocusedFormFieldDataResponse(int request_id, |
| 662 const FormFieldData& field_data); | 662 const FormFieldData& field_data); |
| 663 void OnDidAccessInitialDocument(); | 663 void OnDidAccessInitialDocument(); |
| 664 void OnDidChangeOpener(int32_t opener_routing_id); | 664 void OnDidChangeOpener(int32_t opener_routing_id); |
| 665 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 665 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 666 void OnDidSetFeaturePolicyHeader(const ParsedFeaturePolicy& parsed_header); | 666 void OnDidSetFeaturePolicyHeader(const ParsedFeaturePolicy& parsed_header); |
| 667 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); | 667 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); |
| 668 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); | 668 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
| 669 void OnEnforceInsecureNavigationsSet(const std::vector<uint32_t>& set); |
| 669 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 670 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 670 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 671 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 671 blink::WebSandboxFlags flags); | 672 blink::WebSandboxFlags flags); |
| 672 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 673 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 673 const FrameOwnerProperties& properties); | 674 const FrameOwnerProperties& properties); |
| 674 void OnUpdateTitle(const base::string16& title, | 675 void OnUpdateTitle(const base::string16& title, |
| 675 blink::WebTextDirection title_direction); | 676 blink::WebTextDirection title_direction); |
| 676 void OnUpdateEncoding(const std::string& encoding); | 677 void OnUpdateEncoding(const std::string& encoding); |
| 677 void OnBeginNavigation(const CommonNavigationParams& common_params, | 678 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 678 const BeginNavigationParams& begin_params); | 679 const BeginNavigationParams& begin_params); |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 remote_associated_interfaces_; | 1082 remote_associated_interfaces_; |
| 1082 // NOTE: This must be the last member. | 1083 // NOTE: This must be the last member. |
| 1083 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1084 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1084 | 1085 |
| 1085 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1086 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1086 }; | 1087 }; |
| 1087 | 1088 |
| 1088 } // namespace content | 1089 } // namespace content |
| 1089 | 1090 |
| 1090 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1091 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |