blob: 9e35d1a474ea0f1980ee5ec6424d5d94e1f821d3 [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;
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);
OrientationLockType UserLockedOrientation() const;
OrientationLockType GetCurrentOrientation() const;
void UpdateNaturalOrientation();
private:
ScreenOrientationController* controller_;
DISALLOW_COPY_AND_ASSIGN(ScreenOrientationControllerTestApi);
};
} // namespace ash
#endif // ASH_DISPLAY_SCREEN_ORIENTATION_CONTROLLER_TEST_API_H_