| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 void OnUpdateEncoding(const std::string& encoding); | 458 void OnUpdateEncoding(const std::string& encoding); |
| 459 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, | 459 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, |
| 460 const CommonNavigationParams& common_params); | 460 const CommonNavigationParams& common_params); |
| 461 void OnAccessibilityEvents( | 461 void OnAccessibilityEvents( |
| 462 const std::vector<AccessibilityHostMsg_EventParams>& params, | 462 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 463 int reset_token); | 463 int reset_token); |
| 464 void OnAccessibilityLocationChanges( | 464 void OnAccessibilityLocationChanges( |
| 465 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 465 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 466 void OnAccessibilityFindInPageResult( | 466 void OnAccessibilityFindInPageResult( |
| 467 const AccessibilityHostMsg_FindInPageResultParams& params); | 467 const AccessibilityHostMsg_FindInPageResultParams& params); |
| 468 void OnToggleFullscreen(bool enter_fullscreen); |
| 468 | 469 |
| 469 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 470 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 470 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 471 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
| 471 void OnHidePopup(); | 472 void OnHidePopup(); |
| 472 #endif | 473 #endif |
| 473 | 474 |
| 474 // Registers Mojo services that this frame host makes available. | 475 // Registers Mojo services that this frame host makes available. |
| 475 void RegisterMojoServices(); | 476 void RegisterMojoServices(); |
| 476 | 477 |
| 477 // Updates the state of this RenderFrameHost and clears any waiting state | 478 // Updates the state of this RenderFrameHost and clears any waiting state |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 620 |
| 620 // NOTE: This must be the last member. | 621 // NOTE: This must be the last member. |
| 621 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 622 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 622 | 623 |
| 623 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 624 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 624 }; | 625 }; |
| 625 | 626 |
| 626 } // namespace content | 627 } // namespace content |
| 627 | 628 |
| 628 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 629 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |