| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 const base::string16& message, | 621 const base::string16& message, |
| 622 bool is_reload, | 622 bool is_reload, |
| 623 IPC::Message* reply_msg); | 623 IPC::Message* reply_msg); |
| 624 void OnTextSurroundingSelectionResponse(const base::string16& content, | 624 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 625 uint32_t start_offset, | 625 uint32_t start_offset, |
| 626 uint32_t end_offset); | 626 uint32_t end_offset); |
| 627 void OnDidAccessInitialDocument(); | 627 void OnDidAccessInitialDocument(); |
| 628 void OnDidChangeOpener(int32_t opener_routing_id); | 628 void OnDidChangeOpener(int32_t opener_routing_id); |
| 629 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 629 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 630 void OnEnforceStrictMixedContentChecking(); | 630 void OnEnforceStrictMixedContentChecking(); |
| 631 void OnUpdateOrigin(const url::Origin& origin, |
| 632 bool is_potentially_trustworthy_unique_origin); |
| 631 void OnDidAssignPageId(int32_t page_id); | 633 void OnDidAssignPageId(int32_t page_id); |
| 632 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 634 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 633 blink::WebSandboxFlags flags); | 635 blink::WebSandboxFlags flags); |
| 634 void OnDidChangeFrameOwnerProperties( | 636 void OnDidChangeFrameOwnerProperties( |
| 635 int32_t frame_routing_id, | 637 int32_t frame_routing_id, |
| 636 const blink::WebFrameOwnerProperties& frame_owner_properties); | 638 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 637 void OnUpdateTitle(const base::string16& title, | 639 void OnUpdateTitle(const base::string16& title, |
| 638 blink::WebTextDirection title_direction); | 640 blink::WebTextDirection title_direction); |
| 639 void OnUpdateEncoding(const std::string& encoding); | 641 void OnUpdateEncoding(const std::string& encoding); |
| 640 void OnBeginNavigation(const CommonNavigationParams& common_params, | 642 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 | 933 |
| 932 // NOTE: This must be the last member. | 934 // NOTE: This must be the last member. |
| 933 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 935 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 934 | 936 |
| 935 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 937 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 936 }; | 938 }; |
| 937 | 939 |
| 938 } // namespace content | 940 } // namespace content |
| 939 | 941 |
| 940 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 942 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |