| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CHROME_TEST_EARL_GREY_CHROME_MATCHERS_H_ | 5 #ifndef IOS_CHROME_TEST_EARL_GREY_CHROME_MATCHERS_H_ |
| 6 #define IOS_CHROME_TEST_EARL_GREY_CHROME_MATCHERS_H_ | 6 #define IOS_CHROME_TEST_EARL_GREY_CHROME_MATCHERS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #import <EarlGrey/EarlGrey.h> | 10 #import <EarlGrey/EarlGrey.h> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 id<GREYMatcher> CollectionViewSwitchCell(NSString* accessibilityIdentifier, | 85 id<GREYMatcher> CollectionViewSwitchCell(NSString* accessibilityIdentifier, |
| 86 BOOL isOn); | 86 BOOL isOn); |
| 87 | 87 |
| 88 // Matcher for the Open in New Tab option in the context menu when long pressing | 88 // Matcher for the Open in New Tab option in the context menu when long pressing |
| 89 // a link. | 89 // a link. |
| 90 id<GREYMatcher> OpenLinkInNewTabButton(); | 90 id<GREYMatcher> OpenLinkInNewTabButton(); |
| 91 | 91 |
| 92 // Matcher for the done button on the navigation bar. | 92 // Matcher for the done button on the navigation bar. |
| 93 id<GREYMatcher> NavigationBarDoneButton(); | 93 id<GREYMatcher> NavigationBarDoneButton(); |
| 94 | 94 |
| 95 // Returns matcher for the account consistency setup signin button. |
| 96 id<GREYMatcher> AccountConsistencySetupSigninButton(); |
| 97 |
| 95 } // namespace chrome_test_util | 98 } // namespace chrome_test_util |
| 96 | 99 |
| 97 #endif // IOS_CHROME_TEST_EARL_GREY_CHROME_MATCHERS_H_ | 100 #endif // IOS_CHROME_TEST_EARL_GREY_CHROME_MATCHERS_H_ |
| OLD | NEW |