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

Unified Diff: chrome/renderer/searchbox/searchbox_extension.cc

Issue 113403006: Update some uses of char16 to use the base:: namespace. (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: chrome/renderer/searchbox/searchbox_extension.cc
diff --git a/chrome/renderer/searchbox/searchbox_extension.cc b/chrome/renderer/searchbox/searchbox_extension.cc
index d4cafe43b07f9b1e26b4363db76e9d8c24c27c10..f56ce48c84f1e8922f47ef0b17ac13d31baac1fa 100644
--- a/chrome/renderer/searchbox/searchbox_extension.cc
+++ b/chrome/renderer/searchbox/searchbox_extension.cc
@@ -58,7 +58,7 @@ const char kRTLHtmlTextDirection[] = "rtl";
// Converts a V8 value to a string16.
base::string16 V8ValueToUTF16(v8::Handle<v8::Value> v) {
v8::String::Value s(v);
- return base::string16(reinterpret_cast<const char16*>(*s), s.length());
+ return base::string16(reinterpret_cast<const base::char16*>(*s), s.length());
}
// Converts string16 to V8 String.
« no previous file with comments | « chrome/renderer/pepper/ppb_pdf_impl.cc ('k') | chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698