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

Unified Diff: Source/core/events/NodeEventContext.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/events/MouseEvent.cpp ('k') | Source/core/events/NodeEventContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/NodeEventContext.h
diff --git a/Source/core/events/NodeEventContext.h b/Source/core/events/NodeEventContext.h
index 3260367211ecacbfde43b479876ba77fc611f837..8472b35efcbd490ac02a78af6ce9b51001080867 100644
--- a/Source/core/events/NodeEventContext.h
+++ b/Source/core/events/NodeEventContext.h
@@ -42,7 +42,7 @@ class NodeEventContext {
ALLOW_ONLY_INLINE_ALLOCATION();
public:
// FIXME: Use ContainerNode instead of Node.
- NodeEventContext(PassRefPtrWillBeRawPtr<Node>, PassRefPtr<EventTarget> currentTarget);
+ NodeEventContext(PassRefPtrWillBeRawPtr<Node>, PassRefPtrWillBeRawPtr<EventTarget> currentTarget);
~NodeEventContext();
void trace(Visitor*);
@@ -60,7 +60,7 @@ public:
private:
RefPtrWillBeMember<Node> m_node;
- RefPtr<EventTarget> m_currentTarget;
+ RefPtrWillBeMember<EventTarget> m_currentTarget;
RefPtr<TreeScopeEventContext> m_treeScopeEventContext;
};
« no previous file with comments | « Source/core/events/MouseEvent.cpp ('k') | Source/core/events/NodeEventContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698