| Index: chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h
|
| diff --git a/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h b/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h
|
| index 7286d0ac96a31561c1ec214b8052ed12a82f043a..53b5cb748cc025d9bf4b30d09d3bc48c88f04b51 100644
|
| --- a/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h
|
| +++ b/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h
|
| @@ -13,10 +13,11 @@ class CocoaSpellingEngine : public SpellingEngine {
|
| virtual void Init(base::PlatformFile bdict_file) OVERRIDE;
|
| virtual bool InitializeIfNeeded() OVERRIDE;
|
| virtual bool IsEnabled() OVERRIDE;
|
| - virtual bool CheckSpelling(const string16& word_to_check, int tag) OVERRIDE;
|
| + virtual bool CheckSpelling(const base::string16& word_to_check,
|
| + int tag) OVERRIDE;
|
| virtual void FillSuggestionList(
|
| - const string16& wrong_word,
|
| - std::vector<string16>* optional_suggestions) OVERRIDE;
|
| + const base::string16& wrong_word,
|
| + std::vector<base::string16>* optional_suggestions) OVERRIDE;
|
| };
|
|
|
| #endif // CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_
|
|
|