| 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 <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 575 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
| 576 const base::string16& message, | 576 const base::string16& message, |
| 577 bool is_reload, | 577 bool is_reload, |
| 578 IPC::Message* reply_msg); | 578 IPC::Message* reply_msg); |
| 579 void OnTextSurroundingSelectionResponse(const base::string16& content, | 579 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 580 size_t start_offset, | 580 size_t start_offset, |
| 581 size_t end_offset); | 581 size_t end_offset); |
| 582 void OnDidAccessInitialDocument(); | 582 void OnDidAccessInitialDocument(); |
| 583 void OnDidChangeOpener(int32 opener_routing_id); | 583 void OnDidChangeOpener(int32 opener_routing_id); |
| 584 void OnDidChangeName(const std::string& name); | 584 void OnDidChangeName(const std::string& name); |
| 585 void OnDidEnforceStrictMixedContentChecking(); |
| 585 void OnDidAssignPageId(int32 page_id); | 586 void OnDidAssignPageId(int32 page_id); |
| 586 void OnDidChangeSandboxFlags(int32 frame_routing_id, | 587 void OnDidChangeSandboxFlags(int32 frame_routing_id, |
| 587 blink::WebSandboxFlags flags); | 588 blink::WebSandboxFlags flags); |
| 588 void OnDidChangeFrameOwnerProperties( | 589 void OnDidChangeFrameOwnerProperties( |
| 589 int32 frame_routing_id, | 590 int32 frame_routing_id, |
| 590 const blink::WebFrameOwnerProperties& frame_owner_properties); | 591 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 591 void OnUpdateTitle(const base::string16& title, | 592 void OnUpdateTitle(const base::string16& title, |
| 592 blink::WebTextDirection title_direction); | 593 blink::WebTextDirection title_direction); |
| 593 void OnUpdateEncoding(const std::string& encoding); | 594 void OnUpdateEncoding(const std::string& encoding); |
| 594 void OnBeginNavigation(const CommonNavigationParams& common_params, | 595 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 | 874 |
| 874 // NOTE: This must be the last member. | 875 // NOTE: This must be the last member. |
| 875 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 876 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 876 | 877 |
| 877 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 878 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 878 }; | 879 }; |
| 879 | 880 |
| 880 } // namespace content | 881 } // namespace content |
| 881 | 882 |
| 882 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 883 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |