| Index: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.cpp
|
| diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.cpp b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.cpp
|
| index a1a1186ce118d50d4a20e9979df15ce5073eba52..d87d1887abc9028651b6f1295009848f8ba68a2d 100644
|
| --- a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.cpp
|
| +++ b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.cpp
|
| @@ -13,6 +13,7 @@
|
| #include "modules/screen_orientation/ScreenOrientation.h"
|
| #include "modules/screen_orientation/ScreenOrientationDispatcher.h"
|
| #include "platform/LayoutTestSupport.h"
|
| +#include "platform/ScopedOrientationChangeIndicator.h"
|
| #include "public/platform/WebScreenInfo.h"
|
| #include "public/platform/modules/screen_orientation/WebScreenOrientationClient.h"
|
|
|
| @@ -174,6 +175,8 @@ void ScreenOrientationController::dispatchEventTimerFired(Timer<ScreenOrientatio
|
| {
|
| if (!m_orientation)
|
| return;
|
| +
|
| + ScopedOrientationChangeIndicator orientationChangeIndicator;
|
| m_orientation->dispatchEvent(Event::create(EventTypeNames::change));
|
| }
|
|
|
|
|