| Index: Source/modules/screen_orientation/ScreenOrientationController.h
|
| diff --git a/Source/modules/screen_orientation/ScreenOrientationController.h b/Source/modules/screen_orientation/ScreenOrientationController.h
|
| index e79bd4d8502b6f5f243117729d0b276399cc8764..67a3d10b2fbf26b3b1ddec6e169890f89db747d3 100644
|
| --- a/Source/modules/screen_orientation/ScreenOrientationController.h
|
| +++ b/Source/modules/screen_orientation/ScreenOrientationController.h
|
| @@ -6,7 +6,7 @@
|
| #define ScreenOrientationController_h
|
|
|
| #include "core/dom/DocumentSupplementable.h"
|
| -#include "public/platform/WebScreenOrientation.h"
|
| +#include "public/platform/WebScreenOrientationType.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -14,9 +14,9 @@ class ScreenOrientationController FINAL : public DocumentSupplement {
|
| public:
|
| virtual ~ScreenOrientationController();
|
|
|
| - void didChangeScreenOrientation(blink::WebScreenOrientation);
|
| + void didChangeScreenOrientation(blink::WebScreenOrientationType);
|
|
|
| - blink::WebScreenOrientation orientation() const { return m_orientation; }
|
| + blink::WebScreenOrientationType orientation() const { return m_orientation; }
|
|
|
| // DocumentSupplement API.
|
| static ScreenOrientationController& from(Document&);
|
| @@ -30,7 +30,7 @@ private:
|
| void dispatchOrientationChangeEvent();
|
|
|
| Document& m_document;
|
| - blink::WebScreenOrientation m_orientation;
|
| + blink::WebScreenOrientationType m_orientation;
|
| };
|
|
|
| } // namespace WebCore
|
|
|