| 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 void OnUpdateEncoding(const std::string& encoding); | 448 void OnUpdateEncoding(const std::string& encoding); |
| 449 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, | 449 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, |
| 450 const CommonNavigationParams& common_params); | 450 const CommonNavigationParams& common_params); |
| 451 void OnAccessibilityEvents( | 451 void OnAccessibilityEvents( |
| 452 const std::vector<AccessibilityHostMsg_EventParams>& params, | 452 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 453 int reset_token); | 453 int reset_token); |
| 454 void OnAccessibilityLocationChanges( | 454 void OnAccessibilityLocationChanges( |
| 455 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 455 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 456 void OnAccessibilityFindInPageResult( | 456 void OnAccessibilityFindInPageResult( |
| 457 const AccessibilityHostMsg_FindInPageResultParams& params); | 457 const AccessibilityHostMsg_FindInPageResultParams& params); |
| 458 void OnToggleFullscreen(bool enter_fullscreen); |
| 458 | 459 |
| 459 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 460 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 460 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 461 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
| 461 void OnHidePopup(); | 462 void OnHidePopup(); |
| 462 #endif | 463 #endif |
| 463 | 464 |
| 464 // Registers Mojo services that this frame host makes available. | 465 // Registers Mojo services that this frame host makes available. |
| 465 void RegisterMojoServices(); | 466 void RegisterMojoServices(); |
| 466 | 467 |
| 467 // Updates the state of this RenderFrameHost and clears any waiting state | 468 // Updates the state of this RenderFrameHost and clears any waiting state |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 | 610 |
| 610 // NOTE: This must be the last member. | 611 // NOTE: This must be the last member. |
| 611 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 612 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 612 | 613 |
| 613 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 614 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 614 }; | 615 }; |
| 615 | 616 |
| 616 } // namespace content | 617 } // namespace content |
| 617 | 618 |
| 618 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 619 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |