Index: content/browser/frame_host/render_frame_host_impl.cc |
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
index 03f173e8ce3c2e177367fca65b602a7a7aecd686..92aa910c32f12683c7acdbfd683414d08cba74c2 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -1710,9 +1710,10 @@ void RenderFrameHostImpl::OnDidChangeLoadProgress(double load_progress) { |
void RenderFrameHostImpl::OnSerializeAsMHTMLResponse( |
int job_id, |
bool success, |
- const std::string& mhtml_boundary_marker) { |
+ const std::string& mhtml_boundary_marker, |
+ const std::set<GURL>& uris_of_generated_mhtml_parts) { |
MHTMLGenerationManager::GetInstance()->OnSavedPageAsMHTML( |
- job_id, success, mhtml_boundary_marker); |
+ job_id, success, mhtml_boundary_marker, uris_of_generated_mhtml_parts); |
} |
#if defined(OS_MACOSX) || defined(OS_ANDROID) |