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

Unified Diff: chrome/renderer/spellchecker/spelling_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/spelling_engine.h
diff --git a/chrome/renderer/spellchecker/spelling_engine.h b/chrome/renderer/spellchecker/spelling_engine.h
index 7deb816b62bfa5e68313e5fac5b6b109441a5e57..f6e6bff600ee0486f2e5ee465076dbd575793f15 100644
--- a/chrome/renderer/spellchecker/spelling_engine.h
+++ b/chrome/renderer/spellchecker/spelling_engine.h
@@ -24,10 +24,10 @@ class SpellingEngine {
virtual void Init(base::PlatformFile bdict_file) = 0;
virtual bool InitializeIfNeeded() = 0;
virtual bool IsEnabled() = 0;
- virtual bool CheckSpelling(const string16& word_to_check, int tag) = 0;
+ virtual bool CheckSpelling(const base::string16& word_to_check, int tag) = 0;
virtual void FillSuggestionList(
- const string16& wrong_word,
- std::vector<string16>* optional_suggestions) = 0;
+ const base::string16& wrong_word,
+ std::vector<base::string16>* optional_suggestions) = 0;
};
#endif // CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc ('k') | chrome/renderer/translate/translate_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698