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

Unified Diff: content/shell/renderer/test_runner/mock_grammar_check.cc

Issue 436133002: Migrate TestCommon to Chromium c++ style and remove un-used header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated for layout test Created 6 years, 4 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/mock_grammar_check.cc
diff --git a/content/shell/renderer/test_runner/mock_grammar_check.cc b/content/shell/renderer/test_runner/mock_grammar_check.cc
index 7cee706fc4ec832d7ce77b16e2e67505d582ca42..cd5a6ed6274839ffb1cf874f59961d7e91b0a102 100644
--- a/content/shell/renderer/test_runner/mock_grammar_check.cc
+++ b/content/shell/renderer/test_runner/mock_grammar_check.cc
@@ -7,7 +7,7 @@
#include <algorithm>
#include "base/logging.h"
-#include "content/shell/renderer/test_runner/TestCommon.h"
+#include "content/shell/renderer/test_runner/test_common.h"
#include "third_party/WebKit/public/platform/WebCString.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/web/WebTextCheckingResult.h"
@@ -19,7 +19,7 @@ bool MockGrammarCheck::CheckGrammarOfString(
std::vector<blink::WebTextCheckingResult>* results) {
DCHECK(results);
base::string16 string_text = text;
- if (std::find_if(string_text.begin(), string_text.end(), isASCIIAlpha) ==
+ if (std::find_if(string_text.begin(), string_text.end(), IsASCIIAlpha) ==
string_text.end())
return true;
« no previous file with comments | « content/shell/renderer/test_runner/mock_color_chooser.h ('k') | content/shell/renderer/test_runner/mock_spell_check.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698