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

Unified Diff: content/shell/renderer/test_runner/SpellCheckClient.cpp

Issue 113653003: Add base:: to straggling string16 in content/. (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: content/shell/renderer/test_runner/SpellCheckClient.cpp
diff --git a/content/shell/renderer/test_runner/SpellCheckClient.cpp b/content/shell/renderer/test_runner/SpellCheckClient.cpp
index 3ae2f32331d687ff36e24c2a0ba691af9182ecd1..9b2b63a7710b76358f809ceb96bd92896246e2b0 100644
--- a/content/shell/renderer/test_runner/SpellCheckClient.cpp
+++ b/content/shell/renderer/test_runner/SpellCheckClient.cpp
@@ -60,7 +60,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;
@@ -109,7 +109,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 | « content/shell/renderer/test_runner/MockSpellCheck.cpp ('k') | content/shell/renderer/test_runner/WebTestProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698