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

Unified Diff: third_party/WebKit/Source/platform/text/LineEnding.cpp

Issue 2147633002: Remove nonstandard 'endings' option for Blob/File constructor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 3 years, 12 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
« no previous file with comments | « third_party/WebKit/Source/platform/text/LineEnding.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/text/LineEnding.cpp
diff --git a/third_party/WebKit/Source/platform/text/LineEnding.cpp b/third_party/WebKit/Source/platform/text/LineEnding.cpp
index 329cd4fb77b12ced463bc163e5eaa2030661281f..a4fdf8a00d131fb98380470473d9d5c9f5bd2f2c 100644
--- a/third_party/WebKit/Source/platform/text/LineEnding.cpp
+++ b/third_party/WebKit/Source/platform/text/LineEnding.cpp
@@ -202,13 +202,4 @@ CString normalizeLineEndingsToCRLF(const CString& from) {
return buffer.buffer();
}
-void normalizeLineEndingsToNative(const CString& from, Vector<char>& result) {
-#if OS(WIN)
- VectorCharAppendBuffer buffer(result);
- internalNormalizeLineEndingsToCRLF(from, buffer);
-#else
- normalizeLineEndingsToLF(from, result);
-#endif
-}
-
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/text/LineEnding.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698