Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Unified Diff: third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698