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

Unified Diff: Source/core/xml/XMLHttpRequestUpload.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: 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/core/xml/XMLHttpRequestUpload.h
diff --git a/Source/core/xml/XMLHttpRequestUpload.h b/Source/core/xml/XMLHttpRequestUpload.h
index 65e17e2bc5fdedf5f3a345d31fd10820aa2fe623..b37a0f1cb24dfdecb8c1756f9b1b414d050419f2 100644
--- a/Source/core/xml/XMLHttpRequestUpload.h
+++ b/Source/core/xml/XMLHttpRequestUpload.h
@@ -74,8 +74,10 @@ public:
private:
explicit XMLHttpRequestUpload(XMLHttpRequest*);
+#if !ENABLE(OILPAN)
virtual void refEventTarget() OVERRIDE { ref(); }
virtual void derefEventTarget() OVERRIDE { deref(); }
+#endif
RawPtrWillBeMember<XMLHttpRequest> m_xmlHttpRequest;
EventTargetData m_eventTargetData;

Powered by Google App Engine
This is Rietveld 408576698