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

Unified Diff: chrome/browser/spellchecker/spellcheck_message_filter_mac_unittest.cc

Issue 120983002: Update some uses of UTF conversions in chrome/browser 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/browser/spellchecker/spellcheck_message_filter_mac_unittest.cc
diff --git a/chrome/browser/spellchecker/spellcheck_message_filter_mac_unittest.cc b/chrome/browser/spellchecker/spellcheck_message_filter_mac_unittest.cc
index 1d4055a5a7d4b22f24ff69affc82677720adfb25..4cab6d6bacc665329ff1d04192df0a4fe4505a7c 100644
--- a/chrome/browser/spellchecker/spellcheck_message_filter_mac_unittest.cc
+++ b/chrome/browser/spellchecker/spellcheck_message_filter_mac_unittest.cc
@@ -16,8 +16,8 @@ namespace {
TEST(SpellcheckMessageFilterMacTest, CombineResults) {
std::vector<SpellCheckResult> local_results;
std::vector<SpellCheckResult> remote_results;
- base::string16 remote_suggestion = ASCIIToUTF16("remote");
- base::string16 local_suggestion = ASCIIToUTF16("local");
+ base::string16 remote_suggestion = base::ASCIIToUTF16("remote");
+ base::string16 local_suggestion = base::ASCIIToUTF16("local");
// Remote-only result - must be flagged as GRAMMAR after combine
remote_results.push_back(

Powered by Google App Engine
This is Rietveld 408576698