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

Unified Diff: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationController.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/DeviceOrientationController.h
diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationController.h b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationController.h
index b033d7976aa3f29a6ece9fe29dc1b3eea78d13a2..006f32814d809a85318c5d17de849ba9108ad260 100644
--- a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationController.h
+++ b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationController.h
@@ -15,8 +15,8 @@ class DeviceOrientationData;
class DeviceOrientationDispatcher;
class Event;
-class MODULES_EXPORT DeviceOrientationController : public DeviceSingleWindowEventController, public WillBeHeapSupplement<Document> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceOrientationController);
+class MODULES_EXPORT DeviceOrientationController : public DeviceSingleWindowEventController, public HeapSupplement<Document> {
+ USING_GARBAGE_COLLECTED_MIXIN(DeviceOrientationController);
public:
~DeviceOrientationController() override;
@@ -44,13 +44,13 @@ 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;
DeviceOrientationData* lastData() const;
- PersistentWillBeMember<DeviceOrientationData> m_overrideOrientationData;
+ Member<DeviceOrientationData> m_overrideOrientationData;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698