| 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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 void OnDidAccessInitialDocument(); | 633 void OnDidAccessInitialDocument(); |
| 634 void OnDidChangeOpener(int32_t opener_routing_id); | 634 void OnDidChangeOpener(int32_t opener_routing_id); |
| 635 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 635 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 636 void OnEnforceStrictMixedContentChecking(); | 636 void OnEnforceStrictMixedContentChecking(); |
| 637 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 637 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 638 void OnDidAssignPageId(int32_t page_id); | 638 void OnDidAssignPageId(int32_t page_id); |
| 639 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 639 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 640 blink::WebSandboxFlags flags); | 640 blink::WebSandboxFlags flags); |
| 641 void OnDidChangeFrameOwnerProperties( | 641 void OnDidChangeFrameOwnerProperties( |
| 642 int32_t frame_routing_id, | 642 int32_t frame_routing_id, |
| 643 const blink::WebFrameOwnerProperties& frame_owner_properties); | 643 const blink::WebFrameOwnerProperties& properties); |
| 644 void OnUpdateTitle(const base::string16& title, | 644 void OnUpdateTitle(const base::string16& title, |
| 645 blink::WebTextDirection title_direction); | 645 blink::WebTextDirection title_direction); |
| 646 void OnUpdateEncoding(const std::string& encoding); | 646 void OnUpdateEncoding(const std::string& encoding); |
| 647 void OnBeginNavigation(const CommonNavigationParams& common_params, | 647 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 648 const BeginNavigationParams& begin_params, | 648 const BeginNavigationParams& begin_params, |
| 649 scoped_refptr<ResourceRequestBody> body); | 649 scoped_refptr<ResourceRequestBody> body); |
| 650 void OnDispatchLoad(); | 650 void OnDispatchLoad(); |
| 651 void OnAccessibilityEvents( | 651 void OnAccessibilityEvents( |
| 652 const std::vector<AccessibilityHostMsg_EventParams>& params, | 652 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 653 int reset_token); | 653 int reset_token); |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 | 973 |
| 974 // NOTE: This must be the last member. | 974 // NOTE: This must be the last member. |
| 975 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 975 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 976 | 976 |
| 977 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 977 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 978 }; | 978 }; |
| 979 | 979 |
| 980 } // namespace content | 980 } // namespace content |
| 981 | 981 |
| 982 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 982 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |