Index: third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h |
diff --git a/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h b/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h |
index ee7f3a948308b9f3c251cca69d7a9565c57a59c2..1a4f4909467c43597911725a11d6bd187a89ee70 100644 |
--- a/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h |
+++ b/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h |
@@ -58,15 +58,11 @@ public: |
UseBinaryEncoding |
}; |
- // Generates a random/unique boundary that can be used as a separator of |
- // MHTML parts. |
- static String generateMHTMLBoundary(); |
- |
// Generates an MHTML header and appends it to |outputBuffer|. |
// |
// Same |boundary| needs to used for all generateMHTMLHeader and |
// generateMHTMLPart and generateMHTMLFooter calls that belong to the same |
- // MHTML document (see also generateMHTMLBoundary method). |
+ // MHTML document (see also rfc1341, section 7.2.1, "boundary" description). |
static void generateMHTMLHeader( |
const String& boundary, const String& title, const String& mimeType, |
SharedBuffer& outputBuffer); |
@@ -76,7 +72,7 @@ public: |
// |
// Same |boundary| needs to used for all generateMHTMLHeader and |
// generateMHTMLPart and generateMHTMLFooter calls that belong to the same |
- // MHTML document (see also generateMHTMLBoundary method). |
+ // MHTML document (see also rfc1341, section 7.2.1, "boundary" description). |
// |
// If |contentID| is non-empty, then it will be used as a Content-ID header. |
// See rfc2557 - section 8.3 - "Use of the Content-ID header and CID URLs". |
@@ -89,7 +85,7 @@ public: |
// |
// Same |boundary| needs to used for all generateMHTMLHeader and |
// generateMHTMLPart and generateMHTMLFooter calls that belong to the same |
- // MHTML document (see also generateMHTMLBoundary method). |
+ // MHTML document (see also rfc1341, section 7.2.1, "boundary" description). |
static void generateMHTMLFooter( |
const String& boundary, |
SharedBuffer& outputBuffer); |