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

Unified Diff: chrome/browser/spellchecker/misspelling.h

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/misspelling.h
diff --git a/chrome/browser/spellchecker/misspelling.h b/chrome/browser/spellchecker/misspelling.h
index 6fe98dd8b4c2d401cec44e51e583ae30c1755f99..7db83f708ce8f8a542fca5c9e7458234b2476edf 100644
--- a/chrome/browser/spellchecker/misspelling.h
+++ b/chrome/browser/spellchecker/misspelling.h
@@ -19,11 +19,11 @@
// Stores user feedback to a spellcheck suggestion. Sample usage:
// Misspelling misspelling.
-// misspelling.context = ASCIIToUTF16("Helllo world");
+// misspelling.context = base::ASCIIToUTF16("Helllo world");
// misspelling.location = 0;
// misspelling.length = 6;
// misspelling.suggestions =
-// std::vector<base::string16>(1, ASCIIToUTF16("Hello"));
+// std::vector<base::string16>(1, base::ASCIIToUTF16("Hello"));
// misspelling.hash = GenerateRandomHash();
// misspelling.action.type = SpellcheckAction::TYPE_SELECT;
// misspelling.action.index = 0;
« no previous file with comments | « chrome/browser/spellchecker/feedback_unittest.cc ('k') | chrome/browser/spellchecker/misspelling_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698