| Index: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
|
| diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
|
| index 4c8a301be74a36254a1c5b63071354cf971dd1ef..f550a847bfefa4e82acf62506e56234a02f47e45 100644
|
| --- a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
|
| +++ b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
|
| @@ -18,7 +18,7 @@ class Page;
|
| class MODULES_EXPORT DeviceOrientationInspectorAgent final : public InspectorBaseAgent<DeviceOrientationInspectorAgent, protocol::Frontend::DeviceOrientation>, public protocol::Backend::DeviceOrientation {
|
| WTF_MAKE_NONCOPYABLE(DeviceOrientationInspectorAgent);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<DeviceOrientationInspectorAgent> create(Page*);
|
| + static RawPtr<DeviceOrientationInspectorAgent> create(Page*);
|
|
|
| ~DeviceOrientationInspectorAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -35,7 +35,7 @@ public:
|
| private:
|
| explicit DeviceOrientationInspectorAgent(Page&);
|
| DeviceOrientationController& controller();
|
| - RawPtrWillBeMember<Page> m_page;
|
| + Member<Page> m_page;
|
| };
|
|
|
| } // namespace blink
|
|
|