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

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

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/V8AbstractEventListener.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h b/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
index ea19fbaa285e042d56b8224b7e602ca1b0a63e70..363c9fd1193bf77272485e4fd720d3340655827a 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
@@ -84,7 +84,7 @@ public:
// as it may attempt to compile a function (lazy event listener), get an error
// and invoke onerror callback which can execute arbitrary JS code.
// Protect this event listener to keep it alive.
- RefPtrWillBeRawPtr<V8AbstractEventListener> protect(this);
+ RawPtr<V8AbstractEventListener> protect(this);
prepareListenerObject(executionContext);
return m_listener.newLocal(m_isolate);
}
@@ -148,7 +148,7 @@ private:
v8::Isolate* m_isolate;
// nullptr unless this listener belongs to a worker.
- RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
+ Member<WorkerGlobalScope> m_workerGlobalScope;
#if ENABLE(OILPAN)
SelfKeepAlive<V8AbstractEventListener> m_keepAlive;

Powered by Google App Engine
This is Rietveld 408576698