showcase_eg_utils.h 576 B

1234567891011121314151617181920
  1. // Copyright 2017 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. #ifndef IOS_SHOWCASE_TEST_SHOWCASE_EG_UTILS_H_
  5. #define IOS_SHOWCASE_TEST_SHOWCASE_EG_UTILS_H_
  6. #import <Foundation/Foundation.h>
  7. namespace showcase_utils {
  8. // Opens the screen named |name| on the Showcase home screen.
  9. void Open(NSString* name);
  10. // Returns to the Showcase home screen from a particular screen.
  11. void Close();
  12. } // namespace showcase_utils
  13. #endif // IOS_SHOWCASE_TEST_SHOWCASE_EG_UTILS_H_