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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 1899803002: Offline Pages: Use 'binary encoding' to create MHTML, instead of base64. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nasko's comments Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
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 b88c94f96e797276d72e9cd9d1e9f67c6f1e21fa..d7b45b73ae2f5482699c71789130a2af9257f74d 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -2749,8 +2749,10 @@ void WebContentsImpl::SaveFrameWithHeaders(const GURL& url,
void WebContentsImpl::GenerateMHTML(
const base::FilePath& file,
+ bool use_binary_encoding,
const base::Callback<void(int64_t)>& callback) {
- MHTMLGenerationManager::GetInstance()->SaveMHTML(this, file, callback);
+ MHTMLGenerationManager::GetInstance()->SaveMHTML(this, use_binary_encoding,
+ file, callback);
}
const std::string& WebContentsImpl::GetContentsMimeType() const {

Powered by Google App Engine
This is Rietveld 408576698