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

Unified Diff: chrome/renderer/spellchecker/hunspell_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/hunspell_engine.h
diff --git a/chrome/renderer/spellchecker/hunspell_engine.h b/chrome/renderer/spellchecker/hunspell_engine.h
index b58aa806fa74d2f42ff7e5c26fb480eb2b51e473..fbd8ac8915351c5b62edf6cfe3f37ca844e986e5 100644
--- a/chrome/renderer/spellchecker/hunspell_engine.h
+++ b/chrome/renderer/spellchecker/hunspell_engine.h
@@ -29,9 +29,11 @@ class HunspellEngine : public SpellingEngine {
virtual bool InitializeIfNeeded() OVERRIDE;
virtual bool IsEnabled() OVERRIDE;
- virtual bool CheckSpelling(const string16& word_to_check, int tag) OVERRIDE;
- virtual void FillSuggestionList(const string16& wrong_word,
- std::vector<string16>* optional_suggestions) OVERRIDE;
+ virtual bool CheckSpelling(const base::string16& word_to_check,
+ int tag) OVERRIDE;
+ virtual void FillSuggestionList(
+ const base::string16& wrong_word,
+ std::vector<base::string16>* optional_suggestions) OVERRIDE;
private:
// Initializes the Hunspell dictionary, or does nothing if |hunspell_| is
« no previous file with comments | « chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc ('k') | chrome/renderer/spellchecker/hunspell_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698