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

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, 10 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 1cd134969c6b8998180c25147ea56a350991b341..8f750910bf2c038fade0f537b2108af45fd3cf2a 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
@@ -9,19 +9,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