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

Unified Diff: sandbox/win/src/ipc_unittest.cc

Issue 109843003: Replace wstring with string16 in sandbox (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 | « sandbox/win/src/interception.cc ('k') | sandbox/win/src/named_pipe_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/ipc_unittest.cc
diff --git a/sandbox/win/src/ipc_unittest.cc b/sandbox/win/src/ipc_unittest.cc
index daca7bbe4f10c03aa10e045516fa758079818f3c..53b870c3f152370be3072bba547052c3085d4beb 100644
--- a/sandbox/win/src/ipc_unittest.cc
+++ b/sandbox/win/src/ipc_unittest.cc
@@ -160,7 +160,7 @@ TEST(IPCTest, CrossCallStrPacking) {
CrossCallReturn answer;
uint32 tag1 = 666;
const wchar_t text[] = L"98765 - 43210";
- std::wstring copied_text;
+ base::string16 copied_text;
CrossCallParamsEx* actual_params;
CrossCall(client, tag1, text, &answer);
@@ -204,7 +204,7 @@ TEST(IPCTest, CrossCallStrPacking) {
EXPECT_STREQ(text, copied_text.c_str());
param_size = 1;
- std::wstring copied_text_p0, copied_text_p2;
+ base::string16 copied_text_p0, copied_text_p2;
const wchar_t text2[] = L"AeFG";
CrossCall(client, tag1, text2, null_text, text, &answer);
« no previous file with comments | « sandbox/win/src/interception.cc ('k') | sandbox/win/src/named_pipe_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698