diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-06 20:43:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-06 20:43:31 +0000 |
commit | ca77581c3138913ae4816043d591d1dc4e01eaad (patch) | |
tree | 5793efde9b235b339fdd99189270f1143cf1c7b7 /components/breakpad/app/hard_error_handler_win.cc | |
parent | 464cddaa575a10f5733bfebec77fb6b569dcdd17 (diff) | |
download | chromium_src-ca77581c3138913ae4816043d591d1dc4e01eaad.zip chromium_src-ca77581c3138913ae4816043d591d1dc4e01eaad.tar.gz chromium_src-ca77581c3138913ae4816043d591d1dc4e01eaad.tar.bz2 |
Use base namespace for string16 in components and cloud_print.
R=scottbyer@chromium.org
TBR=scottbyer
Review URL: https://codereview.chromium.org/107383002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239255 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/breakpad/app/hard_error_handler_win.cc')
-rw-r--r-- | components/breakpad/app/hard_error_handler_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/breakpad/app/hard_error_handler_win.cc b/components/breakpad/app/hard_error_handler_win.cc index 0b07edc..cf93adc 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 |