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

Unified Diff: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.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/screen_orientation/ScreenOrientationController.h
diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.h b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.h
index 0a519d328f23c2f6e7ee5530d16174aba8ee15dd..a728882d7dfe8c3b5f460411ba1e99c335bad0e3 100644
--- a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.h
+++ b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationController.h
@@ -21,13 +21,12 @@ class ScreenOrientation;
class WebScreenOrientationClient;
class MODULES_EXPORT ScreenOrientationController final
- : public NoBaseWillBeGarbageCollectedFinalized<ScreenOrientationController>
- , public WillBeHeapSupplement<LocalFrame>
+ : public GarbageCollectedFinalized<ScreenOrientationController>
+ , public HeapSupplement<LocalFrame>
, public LocalFrameLifecycleObserver
, public PlatformEventController {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientationController);
+ USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientationController);
WTF_MAKE_NONCOPYABLE(ScreenOrientationController);
- USING_FAST_MALLOC_WILL_BE_REMOVED(ScreenOrientationController);
public:
~ScreenOrientationController() override;
@@ -66,7 +65,7 @@ private:
bool isActiveAndVisible() const;
- PersistentWillBeMember<ScreenOrientation> m_orientation;
+ Member<ScreenOrientation> m_orientation;
WebScreenOrientationClient* m_client;
Timer<ScreenOrientationController> m_dispatchEventTimer;
};

Powered by Google App Engine
This is Rietveld 408576698