| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 void OnRunFileChooser(const FileChooserParams& params); | 676 void OnRunFileChooser(const FileChooserParams& params); |
| 677 void OnTextSurroundingSelectionResponse(const base::string16& content, | 677 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 678 uint32_t start_offset, | 678 uint32_t start_offset, |
| 679 uint32_t end_offset); | 679 uint32_t end_offset); |
| 680 void OnDidAccessInitialDocument(); | 680 void OnDidAccessInitialDocument(); |
| 681 void OnDidChangeOpener(int32_t opener_routing_id); | 681 void OnDidChangeOpener(int32_t opener_routing_id); |
| 682 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 682 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 683 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); | 683 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); |
| 684 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); | 684 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
| 685 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 685 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 686 void OnDidAssignPageId(int32_t page_id); | |
| 687 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 686 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 688 blink::WebSandboxFlags flags); | 687 blink::WebSandboxFlags flags); |
| 689 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 688 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 690 const FrameOwnerProperties& properties); | 689 const FrameOwnerProperties& properties); |
| 691 void OnUpdateTitle(const base::string16& title, | 690 void OnUpdateTitle(const base::string16& title, |
| 692 blink::WebTextDirection title_direction); | 691 blink::WebTextDirection title_direction); |
| 693 void OnUpdateEncoding(const std::string& encoding); | 692 void OnUpdateEncoding(const std::string& encoding); |
| 694 void OnBeginNavigation(const CommonNavigationParams& common_params, | 693 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 695 const BeginNavigationParams& begin_params); | 694 const BeginNavigationParams& begin_params); |
| 696 void OnDispatchLoad(); | 695 void OnDispatchLoad(); |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 remote_associated_interfaces_; | 1055 remote_associated_interfaces_; |
| 1057 // NOTE: This must be the last member. | 1056 // NOTE: This must be the last member. |
| 1058 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1057 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1059 | 1058 |
| 1060 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1059 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1061 }; | 1060 }; |
| 1062 | 1061 |
| 1063 } // namespace content | 1062 } // namespace content |
| 1064 | 1063 |
| 1065 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1064 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |