summaryrefslogtreecommitdiffstats
path: root/chrome/browser/repost_form_warning_controller.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/repost_form_warning_controller.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/repost_form_warning_controller.cc')
-rw-r--r--chrome/browser/repost_form_warning_controller.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/repost_form_warning_controller.cc b/chrome/browser/repost_form_warning_controller.cc
index c7f0c08..68a8c96 100644
--- a/chrome/browser/repost_form_warning_controller.cc
+++ b/chrome/browser/repost_form_warning_controller.cc
@@ -22,15 +22,15 @@ RepostFormWarningController::RepostFormWarningController(
RepostFormWarningController::~RepostFormWarningController() {
}
-string16 RepostFormWarningController::GetTitle() {
+base::string16 RepostFormWarningController::GetTitle() {
return l10n_util::GetStringUTF16(IDS_HTTP_POST_WARNING_TITLE);
}
-string16 RepostFormWarningController::GetMessage() {
+base::string16 RepostFormWarningController::GetMessage() {
return l10n_util::GetStringUTF16(IDS_HTTP_POST_WARNING);
}
-string16 RepostFormWarningController::GetAcceptButtonTitle() {
+base::string16 RepostFormWarningController::GetAcceptButtonTitle() {
return l10n_util::GetStringUTF16(IDS_HTTP_POST_WARNING_RESEND);
}