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

Unified Diff: components/crash/app/hard_error_handler_win.cc

Issue 1223983002: Move WriteInto to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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/autofill/core/browser/autofill_country.cc ('k') | components/omnibox/search_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/app/hard_error_handler_win.cc
diff --git a/components/crash/app/hard_error_handler_win.cc b/components/crash/app/hard_error_handler_win.cc
index 71bd137b2b94bffe47400d8b546629ea0a9b38f3..ee8852297d7e83e05d05c24d8277f53d804d5331 100644
--- a/components/crash/app/hard_error_handler_win.cc
+++ b/components/crash/app/hard_error_handler_win.cc
@@ -55,7 +55,8 @@ void RaiseHardErrorMsg(long nt_status, const std::string& p1,
return;
count += p1.size() + p2.size() + 1;
base::string16 message;
- ::wsprintf(WriteInto(&message, count), msg_template, p1.c_str(), p2.c_str());
+ ::wsprintf(base::WriteInto(&message, count), msg_template,
+ p1.c_str(), p2.c_str());
// The MB_SERVICE_NOTIFICATION causes this message to be displayed by
// csrss. This means that we are not creating windows or pumping WM messages
// in this process.
« no previous file with comments | « components/autofill/core/browser/autofill_country.cc ('k') | components/omnibox/search_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698