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

Unified Diff: components/crash/content/app/crash_keys_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 | « components/crash/content/app/breakpad_win.cc ('k') | components/os_crypt/ie7_password_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/content/app/crash_keys_win.cc
diff --git a/components/crash/content/app/crash_keys_win.cc b/components/crash/content/app/crash_keys_win.cc
index 2c784fad36bfb42156c614527539e0b2748d4af4..900db6e2d79b08b21e7d1346f8e3c9e7b1cbb96d 100644
--- a/components/crash/content/app/crash_keys_win.cc
+++ b/components/crash/content/app/crash_keys_win.cc
@@ -56,9 +56,9 @@ void CrashKeysWin::SetPluginPath(const std::wstring& path) {
for (chunk_start = 0; chunk_start < path.size(); chunk_index++) {
size_t chunk_length = std::min(kChunkSize, path.size() - chunk_start);
- custom_entries_.push_back(google_breakpad::CustomInfoEntry(
+/* custom_entries_.push_back(google_breakpad::CustomInfoEntry(
base::StringPrintf(L"plugin-path-chunk-%i", chunk_index + 1).c_str(),
- path.substr(chunk_start, chunk_length).c_str()));
+ path.substr(chunk_start, chunk_length).c_str()));*/
chunk_start += chunk_length;
}
« no previous file with comments | « components/crash/content/app/breakpad_win.cc ('k') | components/os_crypt/ie7_password_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698