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 |