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

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

Issue 1883663005: Remove remaining binding layer RawPtr<>s. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/bindings/core/v8/V8EventListener.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8EventListener.h b/third_party/WebKit/Source/bindings/core/v8/V8EventListener.h
index 86a397f4245d1e91299454aa8ec207146a2c79f6..25f5756a89312aa907ab03dafcae2a3b019d333b 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8EventListener.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8EventListener.h
@@ -43,7 +43,7 @@ class Event;
// that can handle the event.
class V8EventListener : public V8AbstractEventListener {
public:
- static RawPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
+ static V8EventListener* create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
{
V8EventListener* eventListener = new V8EventListener(isAttribute, scriptState);
eventListener->setListenerObject(listener);

Powered by Google App Engine
This is Rietveld 408576698