| Index: third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h b/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
|
| index 4a6f1c1c1fa94a556f114997983da87d104a9a7a..49ee1a54a6b5c9b1c75c2bc128c93b154390495a 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
|
| @@ -82,7 +82,7 @@ public:
|
| // Returns the value of the private property if set, or undefined.
|
| v8::Local<v8::Value> getOrUndefined(v8::Local<v8::Context> context, v8::Local<v8::Object> object) const
|
| {
|
| - return v8CallOrCrash(object->GetPrivate(context, m_privateSymbol));
|
| + return object->GetPrivate(context, m_privateSymbol).ToLocalChecked();
|
| }
|
|
|
| // Returns the value of the private property if set, or an empty handle.
|
|
|