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

Unified Diff: third_party/WebKit/Source/web/tests/MHTMLTest.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/web/tests/MHTMLTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/MHTMLTest.cpp b/third_party/WebKit/Source/web/tests/MHTMLTest.cpp
index 494f0713505ffc3e915dcbb684d4756014b7332f..eb303fe4cab26517a6f258ce327c0073ff401948 100644
--- a/third_party/WebKit/Source/web/tests/MHTMLTest.cpp
+++ b/third_party/WebKit/Source/web/tests/MHTMLTest.cpp
@@ -153,8 +153,8 @@ class MHTMLTest : public ::testing::Test {
String boundary = String::FromUTF8("boundary-example");
RefPtr<RawData> mhtml_data = RawData::Create();
- MHTMLArchive::GenerateMHTMLHeader(boundary, title, mime_type,
- *mhtml_data->MutableData());
+ MHTMLArchive::GenerateMHTMLHeaderForTesting(boundary, title, mime_type,
+ *mhtml_data->MutableData());
for (const auto& resource : resources) {
MHTMLArchive::GenerateMHTMLPart(boundary, String(), encoding_policy,
resource, *mhtml_data->MutableData());

Powered by Google App Engine
This is Rietveld 408576698