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

Unified Diff: Source/modules/indexeddb/IDBEventDispatcher.cpp

Issue 316443004: Oilpan: Remove ref counting from EventTarget and all uses of Pass/RefPtr<EventTarget>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: dbl trace Created 6 years, 7 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: Source/modules/indexeddb/IDBEventDispatcher.cpp
diff --git a/Source/modules/indexeddb/IDBEventDispatcher.cpp b/Source/modules/indexeddb/IDBEventDispatcher.cpp
index e80018afdf3a11df0b71a1adb8a4bda84055777b..7cee2ebfac997fd729327649647e152723edde1c 100644
--- a/Source/modules/indexeddb/IDBEventDispatcher.cpp
+++ b/Source/modules/indexeddb/IDBEventDispatcher.cpp
@@ -34,7 +34,7 @@
namespace WebCore {
-bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets)
+bool IDBEventDispatcher::dispatch(Event* event, WillBeHeapVector<RefPtrWillBeMember<EventTarget> >& eventTargets)
{
size_t size = eventTargets.size();
ASSERT(size);

Powered by Google App Engine
This is Rietveld 408576698