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

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

Issue 107383002: Use base namespace for string16 in components and cloud_print. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: components/breakpad/app/hard_error_handler_win.cc
diff --git a/components/breakpad/app/hard_error_handler_win.cc b/components/breakpad/app/hard_error_handler_win.cc
index 0b07edc66ca45de6821a8911b0fa31a362b3ddcf..cf93adcc3ba5bebce72e8927ebc293e2cf8c1b5d 100644
--- a/components/breakpad/app/hard_error_handler_win.cc
+++ b/components/breakpad/app/hard_error_handler_win.cc
@@ -57,7 +57,7 @@ void RaiseHardErrorMsg(long nt_status, const std::string& p1,
if (!count)
return;
count += p1.size() + p2.size() + 1;
- string16 message;
+ base::string16 message;
::wsprintf(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
« no previous file with comments | « components/autofill/core/common/password_form.h ('k') | components/dom_distiller/content/distiller_page_web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698