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

Unified Diff: chrome/renderer/validation_message_agent.cc

Issue 105493002: Use base namespace for string16 in chrome/renderer. (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
« no previous file with comments | « chrome/renderer/translate/translate_helper.cc ('k') | chrome/renderer/web_apps.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/validation_message_agent.cc
diff --git a/chrome/renderer/validation_message_agent.cc b/chrome/renderer/validation_message_agent.cc
index c729534f7c704bac2c1f114be851706abeceffdd..b9c1b507657b00a1311d7e94b7ea3873a2a99f96 100644
--- a/chrome/renderer/validation_message_agent.cc
+++ b/chrome/renderer/validation_message_agent.cc
@@ -22,8 +22,8 @@ void ValidationMessageAgent::showValidationMessage(
const blink::WebString& main_text,
const blink::WebString& sub_text,
blink::WebTextDirection hint) {
- string16 wrapped_main_text = main_text;
- string16 wrapped_sub_text = sub_text;
+ base::string16 wrapped_main_text = main_text;
+ base::string16 wrapped_sub_text = sub_text;
if (hint == blink::WebTextDirectionLeftToRight) {
wrapped_main_text
= base::i18n::GetDisplayStringInLTRDirectionality(wrapped_main_text);
« no previous file with comments | « chrome/renderer/translate/translate_helper.cc ('k') | chrome/renderer/web_apps.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698