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

Unified Diff: Source/testing/runner/SpellCheckClient.cpp

Issue 105143014: Add base:: to string16 in Source/testing/runner/. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
« no previous file with comments | « Source/testing/runner/MockSpellCheck.cpp ('k') | Source/testing/runner/WebTestProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/testing/runner/SpellCheckClient.cpp
diff --git a/Source/testing/runner/SpellCheckClient.cpp b/Source/testing/runner/SpellCheckClient.cpp
index 237e8f3e495a5e9ae1b1b081890676e76e0cb4eb..b8a3863da26e225d61f19465388be437637b697d 100644
--- a/Source/testing/runner/SpellCheckClient.cpp
+++ b/Source/testing/runner/SpellCheckClient.cpp
@@ -86,7 +86,7 @@ void SpellCheckClient::checkTextOfParagraph(const WebString& text, WebTextChecki
vector<WebTextCheckingResult> results;
if (mask & WebTextCheckingTypeSpelling) {
size_t offset = 0;
- string16 data = text;
+ base::string16 data = text;
while (offset < data.length()) {
int misspelledPosition = 0;
int misspelledLength = 0;
@@ -135,7 +135,7 @@ void SpellCheckClient::finishLastTextCheck()
return;
vector<WebTextCheckingResult> results;
int offset = 0;
- string16 text = m_lastRequestedTextCheckString;
+ base::string16 text = m_lastRequestedTextCheckString;
if (!m_spellcheck.isMultiWordMisspelling(WebString(text), &results)) {
while (text.length()) {
int misspelledPosition = 0;
« no previous file with comments | « Source/testing/runner/MockSpellCheck.cpp ('k') | Source/testing/runner/WebTestProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698