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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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/storage/Storage.cpp ('k') | Source/core/streams/ReadableStream.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/StorageEvent.cpp
diff --git a/Source/core/storage/StorageEvent.cpp b/Source/core/storage/StorageEvent.cpp
index 749eb8bb7b68518442ed498beae320be0d5c9cd6..0cf9217f018cc1bac241ae6d6a048402a90d3362 100644
--- a/Source/core/storage/StorageEvent.cpp
+++ b/Source/core/storage/StorageEvent.cpp
@@ -41,7 +41,6 @@ PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create()
StorageEvent::StorageEvent()
{
- ScriptWrappable::init(this);
}
StorageEvent::~StorageEvent()
@@ -66,7 +65,6 @@ StorageEvent::StorageEvent(const AtomicString& type, const String& key, const St
, m_url(url)
, m_storageArea(storageArea)
{
- ScriptWrappable::init(this);
}
StorageEvent::StorageEvent(const AtomicString& type, const StorageEventInit& initializer)
@@ -77,7 +75,6 @@ StorageEvent::StorageEvent(const AtomicString& type, const StorageEventInit& ini
, m_url(initializer.url)
, m_storageArea(initializer.storageArea)
{
- ScriptWrappable::init(this);
}
void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
« no previous file with comments | « Source/core/storage/Storage.cpp ('k') | Source/core/streams/ReadableStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698