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

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

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/storage/StorageEvent.h
diff --git a/third_party/WebKit/Source/modules/storage/StorageEvent.h b/third_party/WebKit/Source/modules/storage/StorageEvent.h
index 8c9163195a5bdb4be4430daad643252ced2d2984..63e13527a12d2786e3cffc72456467397d0b7227 100644
--- a/third_party/WebKit/Source/modules/storage/StorageEvent.h
+++ b/third_party/WebKit/Source/modules/storage/StorageEvent.h
@@ -38,9 +38,9 @@ class StorageEventInit;
class StorageEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<StorageEvent> create();
- static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
- static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString&, const StorageEventInit&);
+ static RawPtr<StorageEvent> create();
+ static RawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
+ static RawPtr<StorageEvent> create(const AtomicString&, const StorageEventInit&);
~StorageEvent() override;
const String& key() const { return m_key; }
@@ -67,7 +67,7 @@ private:
String m_oldValue;
String m_newValue;
String m_url;
- PersistentWillBeMember<Storage> m_storageArea;
+ Member<Storage> m_storageArea;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/storage/StorageArea.h ('k') | third_party/WebKit/Source/modules/storage/StorageEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698