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

Unified Diff: Source/core/storage/StorageEvent.h

Issue 182763002: Add [WillBeGarbageCollected] to Event.idl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/speech/SpeechInputEvent.cpp ('k') | Source/core/storage/StorageEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/StorageEvent.h
diff --git a/Source/core/storage/StorageEvent.h b/Source/core/storage/StorageEvent.h
index c3a5a9e43ad232f86e1750a23c4a555d8990a88f..321d343bb6745cff023f92a65cf831a0e6dce8c9 100644
--- a/Source/core/storage/StorageEvent.h
+++ b/Source/core/storage/StorageEvent.h
@@ -46,9 +46,9 @@ struct StorageEventInit : public EventInit {
class StorageEvent FINAL : public Event {
public:
- static PassRefPtr<StorageEvent> create();
- static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
- static PassRefPtr<StorageEvent> create(const AtomicString&, const StorageEventInit&);
+ 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&);
virtual ~StorageEvent();
const String& key() const { return m_key; }
« no previous file with comments | « Source/core/speech/SpeechInputEvent.cpp ('k') | Source/core/storage/StorageEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698