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

Unified Diff: Source/platform/network/FormDataBuilder.cpp

Issue 150653006: Remove the Vector::append overload that takes a Vector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 10 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: Source/platform/network/FormDataBuilder.cpp
diff --git a/Source/platform/network/FormDataBuilder.cpp b/Source/platform/network/FormDataBuilder.cpp
index b79483903ccc44342cf778498d9ad673bbf2f85c..45b1af9da8ef986d54035b6103d8155636e78b34 100644
--- a/Source/platform/network/FormDataBuilder.cpp
+++ b/Source/platform/network/FormDataBuilder.cpp
@@ -136,7 +136,7 @@ Vector<char> FormDataBuilder::generateUniqueBoundaryString()
randomBytes.append(alphaNumericEncodingMap[randomness & 0x3F]);
}
- boundary.append(randomBytes);
+ boundary.appendVector(randomBytes);
boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
return boundary;
}
« no previous file with comments | « Source/platform/graphics/ThreadSafeDataTransport.cpp ('k') | Source/platform/transforms/TransformOperations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698