| 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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 IPC::Message* reply_msg); | 694 IPC::Message* reply_msg); |
| 695 void OnRunFileChooser(const FileChooserParams& params); | 695 void OnRunFileChooser(const FileChooserParams& params); |
| 696 void OnTextSurroundingSelectionResponse(const base::string16& content, | 696 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 697 uint32_t start_offset, | 697 uint32_t start_offset, |
| 698 uint32_t end_offset); | 698 uint32_t end_offset); |
| 699 void OnFocusedFormFieldDataResponse(int request_id, | 699 void OnFocusedFormFieldDataResponse(int request_id, |
| 700 const FormFieldData& field_data); | 700 const FormFieldData& field_data); |
| 701 void OnDidAccessInitialDocument(); | 701 void OnDidAccessInitialDocument(); |
| 702 void OnDidChangeOpener(int32_t opener_routing_id); | 702 void OnDidChangeOpener(int32_t opener_routing_id); |
| 703 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 703 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 704 void OnDidSetFeaturePolicyHeader(const ParsedFeaturePolicy& parsed_header); | 704 void OnDidSetFeaturePolicyHeader(const FeaturePolicyHeader& parsed_header); |
| 705 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); | 705 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); |
| 706 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); | 706 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
| 707 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 707 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 708 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 708 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 709 blink::WebSandboxFlags flags); | 709 blink::WebSandboxFlags flags); |
| 710 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 710 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 711 const FrameOwnerProperties& properties); | 711 const FrameOwnerProperties& properties); |
| 712 void OnUpdateTitle(const base::string16& title, | 712 void OnUpdateTitle(const base::string16& title, |
| 713 blink::WebTextDirection title_direction); | 713 blink::WebTextDirection title_direction); |
| 714 void OnUpdateEncoding(const std::string& encoding); | 714 void OnUpdateEncoding(const std::string& encoding); |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1133 | 1133 |
| 1134 // NOTE: This must be the last member. | 1134 // NOTE: This must be the last member. |
| 1135 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1135 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1136 | 1136 |
| 1137 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1137 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1138 }; | 1138 }; |
| 1139 | 1139 |
| 1140 } // namespace content | 1140 } // namespace content |
| 1141 | 1141 |
| 1142 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1142 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |