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

Unified Diff: third_party/WebKit/Source/platform/blob/BlobDataTest.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
Index: third_party/WebKit/Source/platform/blob/BlobDataTest.cpp
diff --git a/third_party/WebKit/Source/platform/blob/BlobDataTest.cpp b/third_party/WebKit/Source/platform/blob/BlobDataTest.cpp
index f512f789011649ff6054b626d10296346a7b3dd7..e8798ee197e4f9d0733bec1ce7c07aa60352f241 100644
--- a/third_party/WebKit/Source/platform/blob/BlobDataTest.cpp
+++ b/third_party/WebKit/Source/platform/blob/BlobDataTest.cpp
@@ -18,8 +18,8 @@ TEST(BlobDataTest, Consolidation) {
const char* text2 = "def";
data.appendBytes(text1, 3u);
data.appendBytes(text2, 3u);
- data.appendText("ps1", false);
- data.appendText("ps2", false);
+ data.appendText("ps1");
+ data.appendText("ps2");
EXPECT_EQ(1u, data.m_items.size());
EXPECT_EQ(12u, data.m_items[0].data->length());
« no previous file with comments | « third_party/WebKit/Source/platform/blob/BlobData.cpp ('k') | third_party/WebKit/Source/platform/text/LineEnding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698