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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 size_t end_offset); | 494 size_t end_offset); |
495 void OnDidAccessInitialDocument(); | 495 void OnDidAccessInitialDocument(); |
496 void OnDidDisownOpener(); | 496 void OnDidDisownOpener(); |
497 void OnDidAssignPageId(int32 page_id); | 497 void OnDidAssignPageId(int32 page_id); |
498 void OnUpdateTitle(const base::string16& title, | 498 void OnUpdateTitle(const base::string16& title, |
499 blink::WebTextDirection title_direction); | 499 blink::WebTextDirection title_direction); |
500 void OnUpdateEncoding(const std::string& encoding); | 500 void OnUpdateEncoding(const std::string& encoding); |
501 void OnBeginNavigation(const CommonNavigationParams& common_params, | 501 void OnBeginNavigation(const CommonNavigationParams& common_params, |
502 const BeginNavigationParams& begin_params, | 502 const BeginNavigationParams& begin_params, |
503 scoped_refptr<ResourceRequestBody> body); | 503 scoped_refptr<ResourceRequestBody> body); |
| 504 void OnDispatchLoad(); |
504 void OnAccessibilityEvents( | 505 void OnAccessibilityEvents( |
505 const std::vector<AccessibilityHostMsg_EventParams>& params, | 506 const std::vector<AccessibilityHostMsg_EventParams>& params, |
506 int reset_token); | 507 int reset_token); |
507 void OnAccessibilityLocationChanges( | 508 void OnAccessibilityLocationChanges( |
508 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 509 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
509 void OnAccessibilityFindInPageResult( | 510 void OnAccessibilityFindInPageResult( |
510 const AccessibilityHostMsg_FindInPageResultParams& params); | 511 const AccessibilityHostMsg_FindInPageResultParams& params); |
511 void OnToggleFullscreen(bool enter_fullscreen); | 512 void OnToggleFullscreen(bool enter_fullscreen); |
512 void OnBeforeUnloadHandlersPresent(bool present); | 513 void OnBeforeUnloadHandlersPresent(bool present); |
513 void OnUnloadHandlersPresent(bool present); | 514 void OnUnloadHandlersPresent(bool present); |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 | 704 |
704 // NOTE: This must be the last member. | 705 // NOTE: This must be the last member. |
705 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 706 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
706 | 707 |
707 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 708 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
708 }; | 709 }; |
709 | 710 |
710 } // namespace content | 711 } // namespace content |
711 | 712 |
712 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 713 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |