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

Unified Diff: Source/bindings/core/v8/V8EventListener.h

Issue 1238083002: Oilpan: Move the EventListener hierarchy to Oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/bindings/core/v8/V8EventListener.h
diff --git a/Source/bindings/core/v8/V8EventListener.h b/Source/bindings/core/v8/V8EventListener.h
index c2d0ac7aae08f96729c876686c7044eb0fafe4bf..a9a00b4ffc118747baf2c117cfda39be0525575d 100644
--- a/Source/bindings/core/v8/V8EventListener.h
+++ b/Source/bindings/core/v8/V8EventListener.h
@@ -43,9 +43,9 @@ class Event;
// that can handle the event.
class V8EventListener : public V8AbstractEventListener {
public:
- static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
+ static PassRefPtrWillBeRawPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
{
- return adoptRef(new V8EventListener(listener, isAttribute, scriptState));
+ return adoptRefWillBeNoop(new V8EventListener(listener, isAttribute, scriptState));
}
protected:

Powered by Google App Engine
This is Rietveld 408576698