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

Unified Diff: components/browser_watcher/exit_code_watcher_win.cc

Issue 1410333006: Enough hacks to make wstring printfs unneeded (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverting another unneeded change. 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
« no previous file with comments | « chrome/installer/util/shell_util.cc ('k') | components/browser_watcher/exit_funnel_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/browser_watcher/exit_code_watcher_win.cc
diff --git a/components/browser_watcher/exit_code_watcher_win.cc b/components/browser_watcher/exit_code_watcher_win.cc
index 0e2318472f455a2c9f40b4b2b12622aa9eca7e68..f3bd69e1505ed17aba1fa7226ae91c1c281c4f9a 100644
--- a/components/browser_watcher/exit_code_watcher_win.cc
+++ b/components/browser_watcher/exit_code_watcher_win.cc
@@ -17,7 +17,7 @@ base::string16 GetValueName(const base::Time creation_time,
base::ProcessId pid) {
// Convert the PID and creation time to a string value unique to this
// process instance.
- return base::StringPrintf(L"%d-%lld", pid, creation_time.ToInternalValue());
+ return L"";// base::StringPrintf(L"%d-%lld", pid, creation_time.ToInternalValue());
}
} // namespace
« no previous file with comments | « chrome/installer/util/shell_util.cc ('k') | components/browser_watcher/exit_funnel_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698