#ifndef UI_DISPLAY_DISPLAY_TRANSFORM_H_
#define UI_DISPLAY_DISPLAY_TRANSFORM_H_
#include "ui/display/display.h"
#include "ui/display/display_export.h"
#include "ui/gfx/overlay_transform.h"
namespace gfx {
class SizeF;
class Transform;
}
namespace display {
DISPLAY_EXPORT gfx::Transform CreateRotationTransform(
display::Display::Rotation rotation,
const gfx::SizeF& size_to_rotate);
DISPLAY_EXPORT gfx::OverlayTransform DisplayRotationToOverlayTransform(
display::Display::Rotation rotation);
}
#endif