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

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

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: rebase Created 6 years, 6 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/xml/XMLHttpRequestUpload.h ('k') | Source/modules/indexeddb/IDBEventDispatcher.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBEventDispatcher.h
diff --git a/Source/modules/indexeddb/IDBEventDispatcher.h b/Source/modules/indexeddb/IDBEventDispatcher.h
index 254055c68b8d7304081b37f7a1973473078ea5b7..86ed11102e1c54e97a46142bc8cf0f04471dbae9 100644
--- a/Source/modules/indexeddb/IDBEventDispatcher.h
+++ b/Source/modules/indexeddb/IDBEventDispatcher.h
@@ -29,6 +29,7 @@
#ifndef IDBEventDispatcher_h
#define IDBEventDispatcher_h
+#include "platform/heap/Handle.h"
#include "wtf/RefPtr.h"
#include "wtf/Vector.h"
@@ -39,7 +40,7 @@ class EventTarget;
class IDBEventDispatcher {
public:
- static bool dispatch(Event*, Vector<RefPtr<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
+ static bool dispatch(Event*, WillBeHeapVector<RefPtrWillBeMember<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
private:
IDBEventDispatcher();
« no previous file with comments | « Source/core/xml/XMLHttpRequestUpload.h ('k') | Source/modules/indexeddb/IDBEventDispatcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698