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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp

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/serviceworkers/InstallEvent.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
index 43feeee16082da804453c40aa2663116f95a2060..2ade67dbcc238ab411244ef529bbcef57d6015f8 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
@@ -11,19 +11,19 @@
namespace blink {
-PassRefPtrWillBeRawPtr<InstallEvent> InstallEvent::create()
+RawPtr<InstallEvent> InstallEvent::create()
{
- return adoptRefWillBeNoop(new InstallEvent());
+ return new InstallEvent();
}
-PassRefPtrWillBeRawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit)
+RawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit)
{
- return adoptRefWillBeNoop(new InstallEvent(type, eventInit));
+ return new InstallEvent(type, eventInit);
}
-PassRefPtrWillBeRawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit, WaitUntilObserver* observer)
+RawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit, WaitUntilObserver* observer)
{
- return adoptRefWillBeNoop(new InstallEvent(type, eventInit, observer));
+ return new InstallEvent(type, eventInit, observer);
}
InstallEvent::~InstallEvent()

Powered by Google App Engine
This is Rietveld 408576698