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

Unified Diff: chrome/renderer/spellchecker/custom_dictionary_engine.h

Issue 105493002: Use base namespace for string16 in chrome/renderer. (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/spellchecker/custom_dictionary_engine.h
diff --git a/chrome/renderer/spellchecker/custom_dictionary_engine.h b/chrome/renderer/spellchecker/custom_dictionary_engine.h
index fde49d60901eaf7f27cddecf9f2f6370077fbe18..d1f3a95fed111d4968c66a3df0eff8615d6afaf7 100644
--- a/chrome/renderer/spellchecker/custom_dictionary_engine.h
+++ b/chrome/renderer/spellchecker/custom_dictionary_engine.h
@@ -25,7 +25,7 @@ class CustomDictionaryEngine {
// Spellcheck |text|. Assumes that another spelling engine has set
// |misspelling_start| and |misspelling_len| to indicate a misspelling.
// Returns true if there are no misspellings, otherwise returns false.
- bool SpellCheckWord(const string16& text,
+ bool SpellCheckWord(const base::string16& text,
int misspelling_start,
int misspelling_len);
@@ -36,7 +36,7 @@ class CustomDictionaryEngine {
private:
// Correctly spelled words.
- std::set<string16> dictionary_;
+ std::set<base::string16> dictionary_;
DISALLOW_COPY_AND_ASSIGN(CustomDictionaryEngine);
};
« no previous file with comments | « chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc ('k') | chrome/renderer/spellchecker/custom_dictionary_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698