#ifndef ASH_DISPLAY_ROOT_WINDOW_TRANSFORMERS_H_
#define ASH_DISPLAY_ROOT_WINDOW_TRANSFORMERS_H_
#include "ash/ash_export.h"
namespace aura {
class RootWindowTransformer;
class Window;
}
namespace gfx {
class Display;
class Transform;
}
namespace ash {
class DisplayInfo;
ASH_EXPORT aura::RootWindowTransformer* CreateRootWindowTransformerForDisplay(
aura::Window* root,
const gfx::Display& display);
ASH_EXPORT aura::RootWindowTransformer*
CreateRootWindowTransformerForMirroredDisplay(
const DisplayInfo& source_display_info,
const DisplayInfo& mirror_display_info);
}
#endif