WebScreenOrientationType ScreenOrientationController::effectiveType(ChromeClient& chromeClient)
{
    return m_override ? m_overrideType : chromeClient.screenInfo().orientationType;
}
unsigned short ScreenOrientationController::effectiveAngle(ChromeClient& chromeClient)
{
    return m_override ? m_overrideAngle : chromeClient.screenInfo().orientationAngle;
}