| 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 25f1e1dd42678fc17438528ec72583c05ed071d1..5b724941375c8a462eeaa34b52f1d05cff103aba 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -1710,8 +1710,12 @@ void RenderFrameHostImpl::OnDidChangeLoadProgress(double load_progress) {
|
| frame_tree_node_->DidChangeLoadProgress(load_progress);
|
| }
|
|
|
| -void RenderFrameHostImpl::OnSerializeAsMHTMLResponse(int job_id, bool success) {
|
| - MHTMLGenerationManager::GetInstance()->OnSavedFrameAsMHTML(job_id, success);
|
| +void RenderFrameHostImpl::OnSerializeAsMHTMLResponse(
|
| + int job_id,
|
| + bool success,
|
| + const std::set<std::string>& digests_of_uris_of_serialized_resources) {
|
| + MHTMLGenerationManager::GetInstance()->OnSerializeAsMHTMLResponse(
|
| + this, job_id, success, digests_of_uris_of_serialized_resources);
|
| }
|
|
|
| #if defined(OS_MACOSX) || defined(OS_ANDROID)
|
|
|