Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1502563004: Save-Page-As-Complete-Html: Each frame links to a distinct local file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no-url-deduping-for-frame-and-adding-save-item-id
Patch Set: Rebasing... Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/dom_serializer_browsertest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/renderer/dom_serializer_browsertest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698