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

Unified Diff: third_party/WebKit/Source/modules/vibration/NavigatorVibration.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/vibration/NavigatorVibration.h
diff --git a/third_party/WebKit/Source/modules/vibration/NavigatorVibration.h b/third_party/WebKit/Source/modules/vibration/NavigatorVibration.h
index cf1dbfab234caee699d075c129bf8504e2aa68c0..2a7b555f6364e4549b2957729de3ac1daf3f47d0 100644
--- a/third_party/WebKit/Source/modules/vibration/NavigatorVibration.h
+++ b/third_party/WebKit/Source/modules/vibration/NavigatorVibration.h
@@ -34,11 +34,10 @@ class Navigator;
class UnsignedLongOrUnsignedLongSequence;
class MODULES_EXPORT NavigatorVibration final
- : public NoBaseWillBeGarbageCollectedFinalized<NavigatorVibration>
- , public WillBeHeapSupplement<Page>
+ : public GarbageCollectedFinalized<NavigatorVibration>
+ , public HeapSupplement<Page>
, public PageLifecycleObserver {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorVibration);
- USING_FAST_MALLOC_WILL_BE_REMOVED(NavigatorVibration);
+ USING_GARBAGE_COLLECTED_MIXIN(NavigatorVibration);
public:
typedef Vector<unsigned> VibrationPattern;

Powered by Google App Engine
This is Rietveld 408576698