| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 267eeb8e5360f38c727800484ca4396897bf36ff..c435616d151e6527edf169ca975938bb7801d7e1 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -2800,11 +2800,9 @@ void WebContentsImpl::SaveFrameWithHeaders(const GURL& url,
|
| }
|
|
|
| void WebContentsImpl::GenerateMHTML(
|
| - const base::FilePath& file,
|
| - bool use_binary_encoding,
|
| + const MHTMLGenerationParams& params,
|
| const base::Callback<void(int64_t)>& callback) {
|
| - MHTMLGenerationManager::GetInstance()->SaveMHTML(this, use_binary_encoding,
|
| - file, callback);
|
| + MHTMLGenerationManager::GetInstance()->SaveMHTML(this, params, callback);
|
| }
|
|
|
| const std::string& WebContentsImpl::GetContentsMimeType() const {
|
|
|