| 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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 IPC::Message* reply_msg); | 487 IPC::Message* reply_msg); |
| 488 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 488 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
| 489 const base::string16& message, | 489 const base::string16& message, |
| 490 bool is_reload, | 490 bool is_reload, |
| 491 IPC::Message* reply_msg); | 491 IPC::Message* reply_msg); |
| 492 void OnTextSurroundingSelectionResponse(const base::string16& content, | 492 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 493 size_t start_offset, | 493 size_t start_offset, |
| 494 size_t end_offset); | 494 size_t end_offset); |
| 495 void OnDidAccessInitialDocument(); | 495 void OnDidAccessInitialDocument(); |
| 496 void OnDidDisownOpener(); | 496 void OnDidDisownOpener(); |
| 497 void OnDidChangeName(const std::string& name); |
| 497 void OnDidAssignPageId(int32 page_id); | 498 void OnDidAssignPageId(int32 page_id); |
| 498 void OnUpdateTitle(const base::string16& title, | 499 void OnUpdateTitle(const base::string16& title, |
| 499 blink::WebTextDirection title_direction); | 500 blink::WebTextDirection title_direction); |
| 500 void OnUpdateEncoding(const std::string& encoding); | 501 void OnUpdateEncoding(const std::string& encoding); |
| 501 void OnBeginNavigation(const CommonNavigationParams& common_params, | 502 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 502 const BeginNavigationParams& begin_params, | 503 const BeginNavigationParams& begin_params, |
| 503 scoped_refptr<ResourceRequestBody> body); | 504 scoped_refptr<ResourceRequestBody> body); |
| 504 void OnDispatchLoad(); | 505 void OnDispatchLoad(); |
| 505 void OnAccessibilityEvents( | 506 void OnAccessibilityEvents( |
| 506 const std::vector<AccessibilityHostMsg_EventParams>& params, | 507 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 | 705 |
| 705 // NOTE: This must be the last member. | 706 // NOTE: This must be the last member. |
| 706 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 707 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 707 | 708 |
| 708 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 709 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 709 }; | 710 }; |
| 710 | 711 |
| 711 } // namespace content | 712 } // namespace content |
| 712 | 713 |
| 713 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 714 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |