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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScheduledAction.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/ScheduledAction.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
index 816eab1a56ce84b096bb6120c3cd7f5bd34f7a23..4e9d86375bd7eb5eb04d1469d3389c659367a497 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
@@ -48,8 +48,8 @@ class WorkerGlobalScope;
class ScheduledAction final : public GarbageCollectedFinalized<ScheduledAction> {
WTF_MAKE_NONCOPYABLE(ScheduledAction);
public:
- static RawPtr<ScheduledAction> create(ScriptState*, const ScriptValue& handler, const Vector<ScriptValue>& arguments);
- static RawPtr<ScheduledAction> create(ScriptState*, const String& handler);
+ static ScheduledAction* create(ScriptState*, const ScriptValue& handler, const Vector<ScriptValue>& arguments);
+ static ScheduledAction* create(ScriptState*, const String& handler);
~ScheduledAction();
DECLARE_TRACE();

Powered by Google App Engine
This is Rietveld 408576698