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

Unified Diff: chrome/common/content_settings_helper.cc

Issue 93793010: Update uses of UTF conversions in chrome/common 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 | « chrome/common/chrome_version_info.cc ('k') | chrome/common/content_settings_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/content_settings_helper.cc
diff --git a/chrome/common/content_settings_helper.cc b/chrome/common/content_settings_helper.cc
index ea6226b417ad7c18197fb0b63fe44518621d6d48..9fa5607ccf48aa92275add992e47aebe79fdfabe 100644
--- a/chrome/common/content_settings_helper.cc
+++ b/chrome/common/content_settings_helper.cc
@@ -23,7 +23,7 @@ std::string OriginToString(const GURL& origin) {
}
base::string16 OriginToString16(const GURL& origin) {
- return UTF8ToUTF16(OriginToString(origin));
+ return base::UTF8ToUTF16(OriginToString(origin));
}
} // namespace content_settings_helper
« no previous file with comments | « chrome/common/chrome_version_info.cc ('k') | chrome/common/content_settings_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698