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

Unified Diff: chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc

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_unittest.cc
diff --git a/chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc b/chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc
index 6e268c8105e6c6046e8733c68e87c068f7a530f6..b57b6032af81d468ac564012c591d03b29c025bd 100644
--- a/chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc
+++ b/chrome/renderer/spellchecker/custom_dictionary_engine_unittest.cc
@@ -10,7 +10,7 @@ TEST(CustomDictionaryTest, HandlesEmptyWordWithInvalidSubstring) {
CustomDictionaryEngine engine;
std::set<std::string> custom_words;
engine.Init(custom_words);
- EXPECT_FALSE(engine.SpellCheckWord(string16().c_str(), 15, 23));
+ EXPECT_FALSE(engine.SpellCheckWord(base::string16().c_str(), 15, 23));
}
TEST(CustomDictionaryTest, Basic) {
« no previous file with comments | « chrome/renderer/spellchecker/custom_dictionary_engine.cc ('k') | chrome/renderer/spellchecker/hunspell_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698