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

Unified Diff: content/common/sandbox_win.cc

Issue 1410333006: Enough hacks to make wstring printfs unneeded (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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: content/common/sandbox_win.cc
diff --git a/content/common/sandbox_win.cc b/content/common/sandbox_win.cc
index d1a188641be92b2c26b145c2a7ed4da1aee7f4d8..8292c96d7698f317290ce42fbd57de24a0335679 100644
--- a/content/common/sandbox_win.cc
+++ b/content/common/sandbox_win.cc
@@ -240,7 +240,7 @@ base::string16 PrependWindowsSessionPath(const base::char16* object) {
s_session_id = session_id;
}
- return base::StringPrintf(L"\\Sessions\\%lu%ls", s_session_id, object);
+ return /*base::StringPrintf(L"\\Sessions\\%lu%ls", s_session_id, object)*/ L"";
brucedawson 2015/10/20 21:43:00 String printing - prepending logon session to obje
}
// Checks if the sandbox should be let to run without a job object assigned.

Powered by Google App Engine
This is Rietveld 408576698