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