Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef __IOS_TESTING_EARL_GREY_WAIT_UTIL_H__ | |
|
Eugene But (OOO till 7-30)
2016/05/09 17:58:35
IOS_TESTING_EARL_GREY_WAIT_UTIL_H_
baxley
2016/05/09 18:42:26
Done.
| |
| 6 #define __IOS_TESTING_EARL_GREY_WAIT_UTIL_H__ | |
| 7 | |
| 8 #import <Foundation/Foundation.h> | |
| 9 | |
| 10 namespace testing { | |
| 11 | |
| 12 // Constant for UI wait loop in seconds. | |
| 13 extern const NSTimeInterval kSpinDelaySeconds; | |
| 14 | |
| 15 // Constant for timeout in seconds while waiting for UI element. | |
| 16 extern const NSTimeInterval kWaitForElementTimeout; | |
| 17 } | |
| 18 | |
| 19 #endif // __IOS_TESTING_EARL_GREY_WAIT_UTIL_H__ | |
| OLD | NEW |