| 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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 IPC::Message* reply_msg); | 701 IPC::Message* reply_msg); |
| 702 void OnRunFileChooser(const FileChooserParams& params); | 702 void OnRunFileChooser(const FileChooserParams& params); |
| 703 void OnTextSurroundingSelectionResponse(const base::string16& content, | 703 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 704 uint32_t start_offset, | 704 uint32_t start_offset, |
| 705 uint32_t end_offset); | 705 uint32_t end_offset); |
| 706 void OnFocusedFormFieldDataResponse(int request_id, | 706 void OnFocusedFormFieldDataResponse(int request_id, |
| 707 const FormFieldData& field_data); | 707 const FormFieldData& field_data); |
| 708 void OnDidAccessInitialDocument(); | 708 void OnDidAccessInitialDocument(); |
| 709 void OnDidChangeOpener(int32_t opener_routing_id); | 709 void OnDidChangeOpener(int32_t opener_routing_id); |
| 710 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 710 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 711 void OnDidSetFeaturePolicyHeader(const ParsedFeaturePolicy& parsed_header); | 711 void OnDidSetFeaturePolicyHeader( |
| 712 const ParsedFeaturePolicyHeader& parsed_header); |
| 712 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); | 713 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); |
| 713 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); | 714 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
| 714 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 715 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 715 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 716 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 716 blink::WebSandboxFlags flags); | 717 blink::WebSandboxFlags flags); |
| 717 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 718 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 718 const FrameOwnerProperties& properties); | 719 const FrameOwnerProperties& properties); |
| 719 void OnUpdateTitle(const base::string16& title, | 720 void OnUpdateTitle(const base::string16& title, |
| 720 blink::WebTextDirection title_direction); | 721 blink::WebTextDirection title_direction); |
| 721 void OnUpdateEncoding(const std::string& encoding); | 722 void OnUpdateEncoding(const std::string& encoding); |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 | 1142 |
| 1142 // NOTE: This must be the last member. | 1143 // NOTE: This must be the last member. |
| 1143 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1144 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1144 | 1145 |
| 1145 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1146 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1146 }; | 1147 }; |
| 1147 | 1148 |
| 1148 } // namespace content | 1149 } // namespace content |
| 1149 | 1150 |
| 1150 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1151 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |