| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 505 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
| 506 const base::string16& message, | 506 const base::string16& message, |
| 507 bool is_reload, | 507 bool is_reload, |
| 508 IPC::Message* reply_msg); | 508 IPC::Message* reply_msg); |
| 509 void OnTextSurroundingSelectionResponse(const base::string16& content, | 509 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 510 size_t start_offset, | 510 size_t start_offset, |
| 511 size_t end_offset); | 511 size_t end_offset); |
| 512 void OnDidAccessInitialDocument(); | 512 void OnDidAccessInitialDocument(); |
| 513 void OnDidDisownOpener(); | 513 void OnDidDisownOpener(); |
| 514 void OnDidChangeName(const std::string& name); | 514 void OnDidChangeName(const std::string& name); |
| 515 void OnDidAssignPageId(int32 page_id); | |
| 516 void OnDidChangeSandboxFlags(int32 frame_routing_id, SandboxFlags flags); | 515 void OnDidChangeSandboxFlags(int32 frame_routing_id, SandboxFlags flags); |
| 517 void OnUpdateTitle(const base::string16& title, | 516 void OnUpdateTitle(const base::string16& title, |
| 518 blink::WebTextDirection title_direction); | 517 blink::WebTextDirection title_direction); |
| 519 void OnUpdateEncoding(const std::string& encoding); | 518 void OnUpdateEncoding(const std::string& encoding); |
| 520 void OnBeginNavigation(const CommonNavigationParams& common_params, | 519 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 521 const BeginNavigationParams& begin_params, | 520 const BeginNavigationParams& begin_params, |
| 522 scoped_refptr<ResourceRequestBody> body); | 521 scoped_refptr<ResourceRequestBody> body); |
| 523 void OnDispatchLoad(); | 522 void OnDispatchLoad(); |
| 524 void OnAccessibilityEvents( | 523 void OnAccessibilityEvents( |
| 525 const std::vector<AccessibilityHostMsg_EventParams>& params, | 524 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 | 732 |
| 734 // NOTE: This must be the last member. | 733 // NOTE: This must be the last member. |
| 735 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 734 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 736 | 735 |
| 737 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 736 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 738 }; | 737 }; |
| 739 | 738 |
| 740 } // namespace content | 739 } // namespace content |
| 741 | 740 |
| 742 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 741 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |