summaryrefslogtreecommitdiffstats
path: root/chrome/browser/nacl_host/nacl_infobar_delegate.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-12 22:22:00 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-12 22:22:00 +0000
commit6a72a63f7956c2847b84cfe0e7f7a475a6e3dad1 (patch)
tree9bfa43e1d0962ec6e54a881253a9f792b8bc6fa0 /chrome/browser/nacl_host/nacl_infobar_delegate.cc
parent5f4b6cba250c4f5cd3a5cde0cec90fa6bbc4545b (diff)
downloadchromium_src-6a72a63f7956c2847b84cfe0e7f7a475a6e3dad1.zip
chromium_src-6a72a63f7956c2847b84cfe0e7f7a475a6e3dad1.tar.gz
chromium_src-6a72a63f7956c2847b84cfe0e7f7a475a6e3dad1.tar.bz2
Replace string16 with base::string16 in chrome/browser
TBR=sky Review URL: https://codereview.chromium.org/112993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240447 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/nacl_host/nacl_infobar_delegate.cc')
-rw-r--r--chrome/browser/nacl_host/nacl_infobar_delegate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/nacl_host/nacl_infobar_delegate.cc b/chrome/browser/nacl_host/nacl_infobar_delegate.cc
index 99770c9..aaaaea4 100644
--- a/chrome/browser/nacl_host/nacl_infobar_delegate.cc
+++ b/chrome/browser/nacl_host/nacl_infobar_delegate.cc
@@ -37,7 +37,7 @@ NaClInfoBarDelegate::NaClInfoBarDelegate() : ConfirmInfoBarDelegate() {
NaClInfoBarDelegate::~NaClInfoBarDelegate() {
}
-string16 NaClInfoBarDelegate::GetMessageText() const {
+base::string16 NaClInfoBarDelegate::GetMessageText() const {
return l10n_util::GetStringUTF16(IDS_NACL_APP_MISSING_ARCH_MESSAGE);
}
@@ -45,7 +45,7 @@ int NaClInfoBarDelegate::GetButtons() const {
return BUTTON_NONE;
}
-string16 NaClInfoBarDelegate::GetLinkText() const {
+base::string16 NaClInfoBarDelegate::GetLinkText() const {
return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
}