// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_VR_UI_TEST_INPUT_H_ #define CHROME_BROWSER_VR_UI_TEST_INPUT_H_ #include "base/functional/callback.h" #include "base/time/time.h" #include "chrome/browser/vr/vr_base_export.h" #include "ui/gfx/geometry/point_f.h" namespace vr { // These are used to map user-friendly names, e.g. URL_BAR, to the underlying // element names for interaction during testing. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.vr enum class UserFriendlyElementName : int { … }; // Holds all the information necessary to keep track of and report whether a // UI element changed visibility in the allotted time. struct VR_BASE_EXPORT UiVisibilityState { … }; } // namespace vr #endif // CHROME_BROWSER_VR_UI_TEST_INPUT_H_