| Index: third_party/WebKit/Source/modules/storage/StorageEvent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/StorageEvent.cpp b/third_party/WebKit/Source/modules/storage/StorageEvent.cpp
|
| index f94f0c1c6f8772b8d553be292b2f2e1b5731e779..59ff58e39ce88fce07aa7d8d4a950adde9693921 100644
|
| --- a/third_party/WebKit/Source/modules/storage/StorageEvent.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/StorageEvent.cpp
|
| @@ -31,7 +31,7 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create()
|
| +RawPtr<StorageEvent> StorageEvent::create()
|
| {
|
| return adoptRefWillBeNoop(new StorageEvent);
|
| }
|
| @@ -44,14 +44,14 @@ StorageEvent::~StorageEvent()
|
| {
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
|
| +RawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
|
| {
|
| - return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
|
| + return new StorageEvent(type, key, oldValue, newValue, url, storageArea);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const StorageEventInit& initializer)
|
| +RawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const StorageEventInit& initializer)
|
| {
|
| - return adoptRefWillBeNoop(new StorageEvent(type, initializer));
|
| + return new StorageEvent(type, initializer);
|
| }
|
|
|
| StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
|
|
|