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

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

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« no previous file with comments | « Source/WebCore/storage/Storage.cpp ('k') | Source/WebCore/svg/SVGAElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/storage/StorageEvent.cpp
diff --git a/Source/WebCore/storage/StorageEvent.cpp b/Source/WebCore/storage/StorageEvent.cpp
index c451b7ed053e9d1c7cc68955ce43ae5cf583438a..d90318d63f18bea0bae702f1912b1df0e9716f98 100644
--- a/Source/WebCore/storage/StorageEvent.cpp
+++ b/Source/WebCore/storage/StorageEvent.cpp
@@ -42,6 +42,7 @@ PassRefPtr<StorageEvent> StorageEvent::create()
StorageEvent::StorageEvent()
{
+ ScriptWrappable::init(this);
}
StorageEvent::~StorageEvent()
@@ -66,6 +67,7 @@ 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)
@@ -76,6 +78,7 @@ 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/WebCore/storage/Storage.cpp ('k') | Source/WebCore/svg/SVGAElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698