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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 void OnCommitNavigation(const ResourceResponseHead& response, | 787 void OnCommitNavigation(const ResourceResponseHead& response, |
788 const GURL& stream_url, | 788 const GURL& stream_url, |
789 const CommonNavigationParams& common_params, | 789 const CommonNavigationParams& common_params, |
790 const RequestNavigationParams& request_params); | 790 const RequestNavigationParams& request_params); |
791 void OnFailedNavigation(const CommonNavigationParams& common_params, | 791 void OnFailedNavigation(const CommonNavigationParams& common_params, |
792 const RequestNavigationParams& request_params, | 792 const RequestNavigationParams& request_params, |
793 bool has_stale_copy_in_cache, | 793 bool has_stale_copy_in_cache, |
794 int error_code); | 794 int error_code); |
795 void OnGetSavableResourceLinks(); | 795 void OnGetSavableResourceLinks(); |
796 void OnGetSerializedHtmlWithLocalLinks( | 796 void OnGetSerializedHtmlWithLocalLinks( |
797 const std::map<GURL, base::FilePath>& url_to_local_path); | 797 const std::map<GURL, base::FilePath>& url_to_local_path, |
| 798 const std::map<int, base::FilePath>& frame_routing_id_to_local_path); |
798 void OnSerializeAsMHTML(const FrameMsg_SerializeAsMHTML_Params& params); | 799 void OnSerializeAsMHTML(const FrameMsg_SerializeAsMHTML_Params& params); |
799 void OnFind(int request_id, | 800 void OnFind(int request_id, |
800 const base::string16& search_text, | 801 const base::string16& search_text, |
801 const blink::WebFindOptions& options); | 802 const blink::WebFindOptions& options); |
802 void OnStopFinding(StopFindAction action); | 803 void OnStopFinding(StopFindAction action); |
803 #if defined(OS_ANDROID) | 804 #if defined(OS_ANDROID) |
804 void OnActivateNearestFindResult(int request_id, float x, float y); | 805 void OnActivateNearestFindResult(int request_id, float x, float y); |
805 void OnFindMatchRects(int current_version); | 806 void OnFindMatchRects(int current_version); |
806 void OnSelectPopupMenuItems(bool canceled, | 807 void OnSelectPopupMenuItems(bool canceled, |
807 const std::vector<int>& selected_indices); | 808 const std::vector<int>& selected_indices); |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1196 #endif | 1197 #endif |
1197 | 1198 |
1198 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1199 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1199 | 1200 |
1200 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1201 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1201 }; | 1202 }; |
1202 | 1203 |
1203 } // namespace content | 1204 } // namespace content |
1204 | 1205 |
1205 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1206 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |