| Index: third_party/WebKit/Source/modules/device_light/DeviceLightController.h
|
| diff --git a/third_party/WebKit/Source/modules/device_light/DeviceLightController.h b/third_party/WebKit/Source/modules/device_light/DeviceLightController.h
|
| index 91f2ab0ad0a81649714805c421f980eb687c1427..b4fe6659b6c2861df93f3813e90dc5bed165d1f3 100644
|
| --- a/third_party/WebKit/Source/modules/device_light/DeviceLightController.h
|
| +++ b/third_party/WebKit/Source/modules/device_light/DeviceLightController.h
|
| @@ -13,8 +13,8 @@ namespace blink {
|
|
|
| class Event;
|
|
|
| -class MODULES_EXPORT DeviceLightController final : public DeviceSingleWindowEventController, public WillBeHeapSupplement<Document> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceLightController);
|
| +class MODULES_EXPORT DeviceLightController final : public DeviceSingleWindowEventController, public HeapSupplement<Document> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(DeviceLightController);
|
| public:
|
| ~DeviceLightController() override;
|
|
|
| @@ -32,7 +32,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;
|
| };
|
|
|