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

Unified Diff: third_party/WebKit/Source/modules/storage/StorageEvent.cpp

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/storage/StorageEvent.cpp
diff --git a/third_party/WebKit/Source/modules/storage/StorageEvent.cpp b/third_party/WebKit/Source/modules/storage/StorageEvent.cpp
index aa5596dee8aed01839bcbc5a9c6b65c729290838..b18c5032d067a59937ab6888f44985f6af5fde05 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 {
-RawPtr<StorageEvent> StorageEvent::create()
+StorageEvent* StorageEvent::create()
{
return new StorageEvent;
}
@@ -44,12 +44,12 @@ StorageEvent::~StorageEvent()
{
}
-RawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
+StorageEvent* StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
{
return new StorageEvent(type, key, oldValue, newValue, url, storageArea);
}
-RawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const StorageEventInit& initializer)
+StorageEvent* StorageEvent::create(const AtomicString& type, const StorageEventInit& initializer)
{
return new StorageEvent(type, initializer);
}

Powered by Google App Engine
This is Rietveld 408576698