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

Unified Diff: tools/ipc_fuzzer/mutate/mutate.cc

Issue 121123002: Update uses of UTF conversions in ppapi/, printing/, remoting/, rlz/, sandbox/, skia/, sql/, sync/,… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « tools/imagediff/image_diff.cc ('k') | tools/json_schema_compiler/cc_generator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/mutate/mutate.cc
diff --git a/tools/ipc_fuzzer/mutate/mutate.cc b/tools/ipc_fuzzer/mutate/mutate.cc
index 5cad5a136bfefe5894179d9648bee956cf1f0438..935093188e314e0c6011a244eff9d9da6ca381b6 100644
--- a/tools/ipc_fuzzer/mutate/mutate.cc
+++ b/tools/ipc_fuzzer/mutate/mutate.cc
@@ -149,8 +149,8 @@ class DefaultFuzzer : public Fuzzer {
virtual void FuzzString16(base::string16* value) OVERRIDE {
FuzzStringType<base::string16>(value, frequency_,
- WideToUTF16(L"BORKED"),
- WideToUTF16(L""));
+ base::WideToUTF16(L"BORKED"),
+ base::WideToUTF16(L""));
}
virtual void FuzzData(char* data, int length) OVERRIDE {
« no previous file with comments | « tools/imagediff/image_diff.cc ('k') | tools/json_schema_compiler/cc_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698