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

Unified Diff: third_party/WebKit/Source/modules/push_messaging/PushEvent.h

Issue 1864243004: Remove RawPtr from Source/modules Part 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/push_messaging/PushEvent.h
diff --git a/third_party/WebKit/Source/modules/push_messaging/PushEvent.h b/third_party/WebKit/Source/modules/push_messaging/PushEvent.h
index 20f776c3a4ecacb33263fded074d7707814e7fa5..1446a1068ea2a2f166683fb3ca434e8cb8d94cbd 100644
--- a/third_party/WebKit/Source/modules/push_messaging/PushEvent.h
+++ b/third_party/WebKit/Source/modules/push_messaging/PushEvent.h
@@ -20,15 +20,15 @@ class PushEventInit;
class MODULES_EXPORT PushEvent final : public ExtendableEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static RawPtr<PushEvent> create()
+ static PushEvent* create()
{
return new PushEvent;
}
- static RawPtr<PushEvent> create(const AtomicString& type, PushMessageData* data, WaitUntilObserver* observer)
+ static PushEvent* create(const AtomicString& type, PushMessageData* data, WaitUntilObserver* observer)
{
return new PushEvent(type, data, observer);
}
- static RawPtr<PushEvent> create(const AtomicString& type, const PushEventInit& initializer)
+ static PushEvent* create(const AtomicString& type, const PushEventInit& initializer)
{
return new PushEvent(type, initializer);
}

Powered by Google App Engine
This is Rietveld 408576698