| 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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 void OnAccessibilitySnapshotResponse( | 706 void OnAccessibilitySnapshotResponse( |
| 707 int callback_id, | 707 int callback_id, |
| 708 const AXContentTreeUpdate& snapshot); | 708 const AXContentTreeUpdate& snapshot); |
| 709 void OnToggleFullscreen(bool enter_fullscreen); | 709 void OnToggleFullscreen(bool enter_fullscreen); |
| 710 void OnDidStartLoading(bool to_different_document); | 710 void OnDidStartLoading(bool to_different_document); |
| 711 void OnDidStopLoading(); | 711 void OnDidStopLoading(); |
| 712 void OnDidChangeLoadProgress(double load_progress); | 712 void OnDidChangeLoadProgress(double load_progress); |
| 713 void OnSerializeAsMHTMLResponse( | 713 void OnSerializeAsMHTMLResponse( |
| 714 int job_id, | 714 int job_id, |
| 715 bool success, | 715 bool success, |
| 716 const std::set<std::string>& digests_of_uris_of_serialized_resources); | 716 const std::set<std::string>& digests_of_uris_of_serialized_resources, |
| 717 base::TimeDelta renderer_main_thread_time); |
| 717 | 718 |
| 718 #if defined(USE_EXTERNAL_POPUP_MENU) | 719 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 719 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 720 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
| 720 void OnHidePopup(); | 721 void OnHidePopup(); |
| 721 #endif | 722 #endif |
| 722 | 723 |
| 723 // Registers Mojo interfaces that this frame host makes available. | 724 // Registers Mojo interfaces that this frame host makes available. |
| 724 void RegisterMojoInterfaces(); | 725 void RegisterMojoInterfaces(); |
| 725 | 726 |
| 726 // Resets any waiting state of this RenderFrameHost that is no longer | 727 // Resets any waiting state of this RenderFrameHost that is no longer |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1053 | 1054 |
| 1054 // NOTE: This must be the last member. | 1055 // NOTE: This must be the last member. |
| 1055 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1056 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1056 | 1057 |
| 1057 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1058 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1058 }; | 1059 }; |
| 1059 | 1060 |
| 1060 } // namespace content | 1061 } // namespace content |
| 1061 | 1062 |
| 1062 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1063 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |