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

Unified Diff: third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp

Issue 2842653002: [Offline Pages] Generate MHTML header in the browser process. (Closed)
Patch Set: Update format string for gcc error. Created 3 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: third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp
diff --git a/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp b/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp
index ba72adcfd23cf1eba29df522f7d91e241197e9d1..3ada6a8610f3708634868ed40b8d2ddf659ed965 100644
--- a/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp
+++ b/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp
@@ -125,10 +125,10 @@ bool MHTMLArchive::CanLoadArchive(const KURL& url) {
return false;
}
-void MHTMLArchive::GenerateMHTMLHeader(const String& boundary,
- const String& title,
- const String& mime_type,
- Vector<char>& output_buffer) {
+void MHTMLArchive::GenerateMHTMLHeaderForTesting(const String& boundary,
+ const String& title,
+ const String& mime_type,
+ Vector<char>& output_buffer) {
ASSERT(!boundary.IsEmpty());
ASSERT(!mime_type.IsEmpty());

Powered by Google App Engine
This is Rietveld 408576698