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

Unified Diff: content/public/common/page_state.cc

Issue 121033002: Update uses of UTF conversions in content/ 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
« no previous file with comments | « content/ppapi_plugin/broker_process_dispatcher.cc ('k') | content/public/common/pepper_plugin_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/page_state.cc
diff --git a/content/public/common/page_state.cc b/content/public/common/page_state.cc
index 1e429b80df676c736da7e35e243e49cf2094ca5d..09ffcb27befa190cc3ac206ec1522cd9ef1f9f39 100644
--- a/content/public/common/page_state.cc
+++ b/content/public/common/page_state.cc
@@ -12,7 +12,7 @@ namespace content {
namespace {
base::NullableString16 ToNullableString16(const std::string& utf8) {
- return base::NullableString16(UTF8ToUTF16(utf8), false);
+ return base::NullableString16(base::UTF8ToUTF16(utf8), false);
}
base::FilePath ToFilePath(const base::NullableString16& s) {
« no previous file with comments | « content/ppapi_plugin/broker_process_dispatcher.cc ('k') | content/public/common/pepper_plugin_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698