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

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

Issue 264003003: test_runner: Move everything else into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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: content/shell/renderer/test_runner/MockGrammarCheck.cpp
diff --git a/content/shell/renderer/test_runner/MockGrammarCheck.cpp b/content/shell/renderer/test_runner/MockGrammarCheck.cpp
index 960129a0b774730ac280abc7c364cc0aa3e72356..9bf1e32cd2606c81f9e0dbfdbf37cc72f4e726fe 100644
--- a/content/shell/renderer/test_runner/MockGrammarCheck.cpp
+++ b/content/shell/renderer/test_runner/MockGrammarCheck.cpp
@@ -21,7 +21,7 @@ bool MockGrammarCheck::checkGrammarOfString(const WebString& text, vector<WebTex
{
DCHECK(results);
base::string16 stringText = text;
- if (find_if(stringText.begin(), stringText.end(), WebTestRunner::isASCIIAlpha) == stringText.end())
+ if (find_if(stringText.begin(), stringText.end(), isASCIIAlpha) == stringText.end())
return true;
// Find matching grammatical errors from known ones. This function has to
« no previous file with comments | « content/shell/renderer/test_runner/MockColorChooser.cpp ('k') | content/shell/renderer/test_runner/MockSpellCheck.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698