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

Unified Diff: chrome/renderer/spellchecker/cocoa_spelling_engine_mac.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/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_
« no previous file with comments | « chrome/renderer/searchbox/searchbox_extension_unittest.cc ('k') | chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698