| Index: third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.h
|
| diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.h b/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.h
|
| index 5a45d769d1300e1defe839d6c159af61375878cf..a12bbec97d3e84d1aa830be39b36a51f65074c69 100644
|
| --- a/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.h
|
| +++ b/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.h
|
| @@ -13,8 +13,8 @@ namespace blink {
|
|
|
| class Event;
|
|
|
| -class MODULES_EXPORT DeviceMotionController final : public DeviceSingleWindowEventController, public WillBeHeapSupplement<Document> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceMotionController);
|
| +class MODULES_EXPORT DeviceMotionController final : public DeviceSingleWindowEventController, public HeapSupplement<Document> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(DeviceMotionController);
|
| public:
|
| ~DeviceMotionController() override;
|
|
|
| @@ -35,7 +35,7 @@ private:
|
| bool hasLastData() override;
|
|
|
| // Inherited from DeviceSingleWindowEventController.
|
| - PassRefPtrWillBeRawPtr<Event> lastEvent() const override;
|
| + RawPtr<Event> lastEvent() const override;
|
| const AtomicString& eventTypeName() const override;
|
| bool isNullEvent(Event*) const override;
|
| };
|
|
|