| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 void OnAccessibilitySnapshotResponse( | 719 void OnAccessibilitySnapshotResponse( |
| 720 int callback_id, | 720 int callback_id, |
| 721 const AXContentTreeUpdate& snapshot); | 721 const AXContentTreeUpdate& snapshot); |
| 722 void OnToggleFullscreen(bool enter_fullscreen); | 722 void OnToggleFullscreen(bool enter_fullscreen); |
| 723 void OnDidStartLoading(bool to_different_document); | 723 void OnDidStartLoading(bool to_different_document); |
| 724 void OnDidStopLoading(); | 724 void OnDidStopLoading(); |
| 725 void OnDidChangeLoadProgress(double load_progress); | 725 void OnDidChangeLoadProgress(double load_progress); |
| 726 void OnSerializeAsMHTMLResponse( | 726 void OnSerializeAsMHTMLResponse( |
| 727 int job_id, | 727 int job_id, |
| 728 bool success, | 728 bool success, |
| 729 const std::set<std::string>& digests_of_uris_of_serialized_resources); | 729 const std::set<std::string>& digests_of_uris_of_serialized_resources, |
| 730 base::TimeDelta renderer_main_thread_time); |
| 730 | 731 |
| 731 #if defined(USE_EXTERNAL_POPUP_MENU) | 732 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 732 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 733 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
| 733 void OnHidePopup(); | 734 void OnHidePopup(); |
| 734 #endif | 735 #endif |
| 735 | 736 |
| 736 // Registers Mojo interfaces that this frame host makes available. | 737 // Registers Mojo interfaces that this frame host makes available. |
| 737 void RegisterMojoInterfaces(); | 738 void RegisterMojoInterfaces(); |
| 738 | 739 |
| 739 // Resets any waiting state of this RenderFrameHost that is no longer | 740 // Resets any waiting state of this RenderFrameHost that is no longer |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 | 1067 |
| 1067 // NOTE: This must be the last member. | 1068 // NOTE: This must be the last member. |
| 1068 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1069 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1069 | 1070 |
| 1070 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1071 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1071 }; | 1072 }; |
| 1072 | 1073 |
| 1073 } // namespace content | 1074 } // namespace content |
| 1074 | 1075 |
| 1075 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1076 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |