blob: 5920beee201198e37ab424d362f3de6230042849 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_DISPLAY_SCREEN_ORIENTATION_CONTROLLER_TEST_API_H_
#define ASH_DISPLAY_SCREEN_ORIENTATION_CONTROLLER_TEST_API_H_
#include "ash/display/display_configuration_controller.h"
#include "base/macros.h"
#include "ui/display/display.h"
namespace ash {
class ScreenOrientationController;
namespace mojom {
enum class OrientationLockType;
}
class ScreenOrientationControllerTestApi {
public:
explicit ScreenOrientationControllerTestApi(
ScreenOrientationController* controller);
void SetDisplayRotation(
display::Display::Rotation rotation,
display::Display::RotationSource source,
DisplayConfigurationController::RotationAnimation mode =
DisplayConfigurationController::ANIMATION_ASYNC);
void SetRotationLocked(bool rotation_locked);
mojom::OrientationLockType UserLockedOrientation() const;
mojom::OrientationLockType GetCurrentOrientation() const;
void UpdateNaturalOrientation();
private:
ScreenOrientationController* controller_;
DISALLOW_COPY_AND_ASSIGN(ScreenOrientationControllerTestApi);
};
} // namespace ash
#endif // ASH_DISPLAY_SCREEN_ORIENTATION_CONTROLLER_TEST_API_H_