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

Unified Diff: third_party/mojo/src/mojo/edk/embedder/platform_channel_pair_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: third_party/mojo/src/mojo/edk/embedder/platform_channel_pair_win.cc
diff --git a/third_party/mojo/src/mojo/edk/embedder/platform_channel_pair_win.cc b/third_party/mojo/src/mojo/edk/embedder/platform_channel_pair_win.cc
index 2073ebb2d28014b3dba11dd75b625e7f32457d65..7803cd546269b66fd1094ac3a55c4e9e7cfddb9d 100644
--- a/third_party/mojo/src/mojo/edk/embedder/platform_channel_pair_win.cc
+++ b/third_party/mojo/src/mojo/edk/embedder/platform_channel_pair_win.cc
@@ -22,9 +22,9 @@ namespace embedder {
namespace {
std::wstring GeneratePipeName() {
- return base::StringPrintf(L"\\\\.\\pipe\\mojo.%u.%u.%I64u",
+ return L"";/* base::StringPrintf(L"\\\\.\\pipe\\mojo.%u.%u.%I64u",
GetCurrentProcessId(), GetCurrentThreadId(),
- base::RandUint64());
+ base::RandUint64());*/
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698