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

Unified Diff: webkit/tools/test_shell/mock_spellcheck.cc

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months 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: webkit/tools/test_shell/mock_spellcheck.cc
diff --git a/webkit/tools/test_shell/mock_spellcheck.cc b/webkit/tools/test_shell/mock_spellcheck.cc
index cc05c1620dc7ef829b471e6a4f9065add1f010dc..108d3c21519ab5be7ef3c7f67c3feee0d1d587f6 100644
--- a/webkit/tools/test_shell/mock_spellcheck.cc
+++ b/webkit/tools/test_shell/mock_spellcheck.cc
@@ -8,7 +8,7 @@
#include <utility>
#include "base/logging.h"
-#include "base/string16.h"
+#include "base/string16.h.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
@@ -19,7 +19,7 @@ MockSpellCheck::MockSpellCheck()
MockSpellCheck::~MockSpellCheck() {
}
-bool MockSpellCheck::SpellCheckWord(const string16& text,
+bool MockSpellCheck::SpellCheckWord(const base::string16& text,
int* misspelledOffset,
int* misspelledLength) {
DCHECK(misspelledOffset && misspelledLength);
@@ -43,7 +43,7 @@ bool MockSpellCheck::SpellCheckWord(const string16& text,
// don't have misspelled contractions.
static const char* kWordCharacters =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
- string16 word_characters(ASCIIToUTF16(kWordCharacters));
+ base::string16 word_characters(ASCIIToUTF16(kWordCharacters));
size_t word_offset = text.find_first_of(word_characters);
if (word_offset == std::string::npos)
@@ -58,8 +58,8 @@ bool MockSpellCheck::SpellCheckWord(const string16& text,
// extracted word if this word is a known misspelled word.
// (See the comment in MockSpellCheck::InitializeIfNeeded() why we use a
// misspelled-word table.)
- string16 word(text, word_offset, word_length);
- std::map<string16, bool>::iterator it = misspelled_words_.find(word);
+ base::string16 word(text, word_offset, word_length);
+ std::map<base::string16, bool>::iterator it = misspelled_words_.find(word);
if (it == misspelled_words_.end())
return true;
@@ -113,7 +113,7 @@ bool MockSpellCheck::InitializeIfNeeded() {
misspelled_words_.clear();
for (size_t i = 0; i < arraysize(kMisspelledWords); ++i) {
- misspelled_words_.insert(std::make_pair<string16, bool>(
+ misspelled_words_.insert(std::make_pair<base::string16, bool>(
ASCIIToUTF16(kMisspelledWords[i]), false));
}
@@ -126,8 +126,8 @@ bool MockSpellCheck::InitializeIfNeeded() {
return false;
}
-void MockSpellCheck::FillSuggestions(const string16& word,
- std::vector<string16>* suggestions) {
+void MockSpellCheck::FillSuggestions(const base::string16& word,
+ std::vector<base::string16>* suggestions) {
if (word == ASCIIToUTF16("wellcome"))
suggestions->push_back(ASCIIToUTF16("welcome"));
}

Powered by Google App Engine
This is Rietveld 408576698