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

Unified Diff: third_party/WebKit/Source/modules/notifications/Notification.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/notifications/Notification.h
diff --git a/third_party/WebKit/Source/modules/notifications/Notification.h b/third_party/WebKit/Source/modules/notifications/Notification.h
index 0b9295a0c5aa76d347e32e9503d9834f4355a95d..bb224c2938c9c4f10cb04f2384cd094baa9adb42 100644
--- a/third_party/WebKit/Source/modules/notifications/Notification.h
+++ b/third_party/WebKit/Source/modules/notifications/Notification.h
@@ -60,7 +60,7 @@ class ScriptState;
class MODULES_EXPORT Notification final : public RefCountedGarbageCollectedEventTargetWithInlineData<Notification>, public ActiveScriptWrappable, public ActiveDOMObject, public WebNotificationDelegate {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Notification);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Notification);
+ USING_GARBAGE_COLLECTED_MIXIN(Notification);
DEFINE_WRAPPERTYPEINFO();
public:
// Used for JavaScript instantiations of the Notification object. Will automatically schedule for
@@ -122,7 +122,7 @@ public:
protected:
// EventTarget interface.
- DispatchEventResult dispatchEventInternal(PassRefPtrWillBeRawPtr<Event>) final;
+ DispatchEventResult dispatchEventInternal(RawPtr<Event>) final;
private:
Notification(ExecutionContext*, const WebNotificationData&);
« no previous file with comments | « third_party/WebKit/Source/modules/nfc/NFC.h ('k') | third_party/WebKit/Source/modules/notifications/Notification.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698