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

Unified Diff: ios/chrome/browser/ui/settings/block_popups_egtest.mm

Issue 2777463002: Make custom GREYAction methods Chromium C-Style. (Closed)
Patch Set: more c-style Created 3 years, 9 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
« no previous file with comments | « ios/chrome/browser/context_menu/context_menu_egtest.mm ('k') | ios/chrome/browser/web/browsing_egtest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/settings/block_popups_egtest.mm
diff --git a/ios/chrome/browser/ui/settings/block_popups_egtest.mm b/ios/chrome/browser/ui/settings/block_popups_egtest.mm
index 9c8860a25b3b154c6bb43709b5e2664a71ef04ed..9fafff9fd49f21afb77b2a00f99a4edcc583bfbd 100644
--- a/ios/chrome/browser/ui/settings/block_popups_egtest.mm
+++ b/ios/chrome/browser/ui/settings/block_popups_egtest.mm
@@ -274,7 +274,7 @@ class ScopedBlockPopupsException {
[[EarlGrey
selectElementWithMatcher:chrome_test_util::CollectionViewSwitchCell(
@"blockPopupsContentView_switch", YES)]
- performAction:chrome_test_util::turnCollectionViewSwitchOn(NO)];
+ performAction:chrome_test_util::TurnCollectionViewSwitchOn(NO)];
[[EarlGrey selectElementWithMatcher:grey_text(base::SysUTF8ToNSString(
allowedPattern))]
assertWithMatcher:grey_notVisible()];
@@ -290,7 +290,7 @@ class ScopedBlockPopupsException {
[[EarlGrey
selectElementWithMatcher:chrome_test_util::CollectionViewSwitchCell(
@"blockPopupsContentView_switch", NO)]
- performAction:chrome_test_util::turnCollectionViewSwitchOn(YES)];
+ performAction:chrome_test_util::TurnCollectionViewSwitchOn(YES)];
[[EarlGrey selectElementWithMatcher:grey_text(base::SysUTF8ToNSString(
allowedPattern))]
assertWithMatcher:grey_sufficientlyVisible()];
« no previous file with comments | « ios/chrome/browser/context_menu/context_menu_egtest.mm ('k') | ios/chrome/browser/web/browsing_egtest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698