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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8NodeFilterCondition.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/V8NodeFilterCondition.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8NodeFilterCondition.h b/third_party/WebKit/Source/bindings/core/v8/V8NodeFilterCondition.h
index 859b5fa85ae9e49c03781d106bc9f23a2c87f4e9..b3aa199a590c2ab131c92783a1bb55da20e9a3dd 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8NodeFilterCondition.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8NodeFilterCondition.h
@@ -62,7 +62,7 @@ class ExceptionState;
// (V8)
class V8NodeFilterCondition final : public NodeFilterCondition {
public:
- static RawPtr<V8NodeFilterCondition> create(v8::Local<v8::Value> filter, v8::Local<v8::Object> owner, ScriptState* scriptState)
+ static V8NodeFilterCondition* create(v8::Local<v8::Value> filter, v8::Local<v8::Object> owner, ScriptState* scriptState)
{
return new V8NodeFilterCondition(filter, owner, scriptState);
}

Powered by Google App Engine
This is Rietveld 408576698