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

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

Issue 1386873003: OOPIFs: Transitioning MHTML generation from view-oriented to frame-oriented. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mhtml-generation-mgr-cleanup
Patch Set: Moving "using" declaration under a singly-included section of frame_messges.h Created 5 years 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
« no previous file with comments | « content/renderer/web_frame_utils.cc ('k') | third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/renderer/web_frame_utils.cc ('k') | third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698