1 // Copyright 2014 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.
5 #ifndef UI_BASE_TEST_IOS_UI_VIEW_TEST_UTILS_H_
6 #define UI_BASE_TEST_IOS_UI_VIEW_TEST_UTILS_H_
8 #import <UIKit/UIKit.h>
12 namespace uiview_utils
{
14 // Cancels any visible UIAlertViews.
17 // Forces rendering of a UIView. This is used in tests to make sure that UIKit
18 // optimizations don't have the views return the previous values (such as
20 void ForceViewRendering(UIView
* view
);
22 } // namespace uiview_utils
26 #endif // UI_BASE_TEST_IOS_UI_VIEW_TEST_UTILS_H_