summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/mock_spellcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/mock_spellcheck.h')
-rw-r--r--webkit/tools/test_shell/mock_spellcheck.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/tools/test_shell/mock_spellcheck.h b/webkit/tools/test_shell/mock_spellcheck.h
index 41b180d..8f7c395 100644
--- a/webkit/tools/test_shell/mock_spellcheck.h
+++ b/webkit/tools/test_shell/mock_spellcheck.h
@@ -29,14 +29,14 @@ class MockSpellCheck {
// the first invalid word to misspelledLength, respectively.
// For example, when the given text is " zz zz", this function sets 3 to
// misspelledOffset and 2 to misspelledLength, respectively.
- bool SpellCheckWord(const string16& text,
+ bool SpellCheckWord(const base::string16& text,
int* misspelledOffset,
int* misspelledLength);
// Emulates suggestions for misspelled words.
// The suggestions are pushed to |suggestions| parameters.
- void FillSuggestions(const string16& word,
- std::vector<string16>* suggestions);
+ void FillSuggestions(const base::string16& word,
+ std::vector<base::string16>* suggestions);
private:
// Initialize the internal resources if we need to initialize it.
// Initializing this object may take long time. To prevent from hurting
@@ -48,7 +48,7 @@ class MockSpellCheck {
bool InitializeIfNeeded();
// A table that consists of misspelled words.
- std::map<string16, bool> misspelled_words_;
+ std::map<base::string16, bool> misspelled_words_;
// A flag representing whether or not this object is initialized.
bool initialized_;