| Index: content/renderer/screen_orientation/screen_orientation_observer.h
|
| diff --git a/content/renderer/screen_orientation/screen_orientation_observer.h b/content/renderer/screen_orientation/screen_orientation_observer.h
|
| index 48cca8c08c4b2559451d17247348b7ff2cb82794..2ed1056cfcc5d588e15dd88fc87f442ee7750f0e 100644
|
| --- a/content/renderer/screen_orientation/screen_orientation_observer.h
|
| +++ b/content/renderer/screen_orientation/screen_orientation_observer.h
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "content/public/renderer/platform_event_observer.h"
|
| +#include "device/screen_orientation/public/interfaces/screen_orientation.mojom.h"
|
|
|
| namespace content {
|
|
|
| @@ -27,6 +28,12 @@ class ScreenOrientationObserver
|
| protected:
|
| void SendStartMessage() override;
|
| void SendStopMessage() override;
|
| +
|
| + private:
|
| + device::mojom::ScreenOrientationAccurate* GetScreenOrientationAccurate();
|
| +
|
| + device::mojom::ScreenOrientationAccurateAssociatedPtr
|
| + screen_orientation_accurate_;
|
| };
|
|
|
| }; // namespace content
|
|
|