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

Unified Diff: sandbox/win/sandbox_poc/pocdll/spyware.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/sandbox_poc/main_ui_window.cc ('k') | sandbox/win/sandbox_poc/sandbox.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/sandbox_poc/pocdll/spyware.cc
diff --git a/sandbox/win/sandbox_poc/pocdll/spyware.cc b/sandbox/win/sandbox_poc/pocdll/spyware.cc
index a77fe0a580956621dfa8f4e5c489b5ffdf31142a..8de3896e32f9ea1decea3853bf1bda01a56fe80b 100644
--- a/sandbox/win/sandbox_poc/pocdll/spyware.cc
+++ b/sandbox/win/sandbox_poc/pocdll/spyware.cc
@@ -23,7 +23,7 @@ void POCDLL_API TestSpyKeys(HANDLE log) {
fprintf(output, "[INFO] Logging keystrokes for 15 seconds\r\n");
fflush(output);
- std::wstring logged;
+ base::string16 logged;
DWORD tick = ::GetTickCount() + 15000;
while (tick > ::GetTickCount()) {
for (int i = 0; i < 256; ++i) {
« no previous file with comments | « sandbox/win/sandbox_poc/main_ui_window.cc ('k') | sandbox/win/sandbox_poc/sandbox.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698