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

Unified Diff: ios/web/shell/test/earl_grey/shell_matchers.h

Issue 2642193012: Make EarlGrey matchers compliant with Chromium style. (Closed)
Patch Set: build.gn and rebase Created 3 years, 11 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: ios/web/shell/test/earl_grey/shell_matchers.h
diff --git a/ios/web/shell/test/earl_grey/shell_matchers.h b/ios/web/shell/test/earl_grey/shell_matchers.h
index e366dd0d9a055204cb37769d1b778a152077aa29..79eb4021519d565c96e3fba23ef067a72b8a8a55 100644
--- a/ios/web/shell/test/earl_grey/shell_matchers.h
+++ b/ios/web/shell/test/earl_grey/shell_matchers.h
@@ -12,28 +12,28 @@
namespace web {
// Matcher for WKWebView containing |text|.
-id<GREYMatcher> webViewContainingText(const std::string& text);
+id<GREYMatcher> WebViewContainingText(const std::string& text);
// Matcher for WKWebView containing an html element which matches |selector|.
-id<GREYMatcher> webViewCssSelector(const std::string& selector);
+id<GREYMatcher> WebViewCssSelector(const std::string& selector);
// Matcher for the WKWebView.
-id<GREYMatcher> webView();
+id<GREYMatcher> WebView();
// Matcher for WKWebView's scroll view.
-id<GREYMatcher> webViewScrollView();
+id<GREYMatcher> WebViewScrollView();
// Matcher for web shell address field text property equal to |text|.
-id<GREYMatcher> addressFieldText(std::string text);
+id<GREYMatcher> AddressFieldText(std::string text);
// Matcher for back button in web shell.
-id<GREYMatcher> backButton();
+id<GREYMatcher> BackButton();
// Matcher for forward button in web shell.
-id<GREYMatcher> forwardButton();
+id<GREYMatcher> ForwardButton();
// Matcher for address field in web shell.
-id<GREYMatcher> addressField();
+id<GREYMatcher> AddressField();
} // namespace web
« no previous file with comments | « ios/web/shell/test/earl_grey/shell_base_test_case.mm ('k') | ios/web/shell/test/earl_grey/shell_matchers.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698