sam...@cisco.com
unread,Feb 5, 2015, 9:24:32 PM2/5/15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to e...@chromium.org, da...@chromium.org, ese...@chromium.org, joc...@chromium.org, p...@chromium.org, blink-...@chromium.org
Reviewers: eae, darin - slow to review, eseidel, jochen (slow), pdr,
Description:
Update mhtml saved page header to "Saved by Blink"
BUG=None
TEST=NONE
Please review this at
https://codereview.chromium.org/871433008/
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Affected files (+1, -1 lines):
M Source/platform/mhtml/MHTMLArchive.cpp
Index: Source/platform/mhtml/MHTMLArchive.cpp
diff --git a/Source/platform/mhtml/MHTMLArchive.cpp
b/Source/platform/mhtml/MHTMLArchive.cpp
index
76a1e140571cd8532d64677ace77cfa47a43c67e..2661cf831784547f1740f470ae8c5ff04905ba53
100644
--- a/Source/platform/mhtml/MHTMLArchive.cpp
+++ b/Source/platform/mhtml/MHTMLArchive.cpp
@@ -132,7 +132,7 @@ PassRefPtr<SharedBuffer>
MHTMLArchive::generateMHTMLData(const Vector<Serialized
String dateString = makeRFC2822DateString(now.weekDay(),
now.monthDay(), now.month(), now.fullYear(), now.hour(), now.minute(),
now.second(), 0);
StringBuilder stringBuilder;
- stringBuilder.appendLiteral("From: <Saved by WebKit>\r\n");
+ stringBuilder.appendLiteral("From: <Saved by Blink>\r\n");
stringBuilder.appendLiteral("Subject: ");
// We replace non ASCII characters with '?' characters to match IE's
behavior.
stringBuilder.append(replaceNonPrintableCharacters(title));