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