From c30a6232df03e1efbd9f3b226777b07e087a1122 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 12 Oct 2020 14:27:29 +0200 Subject: BASELINE: Update Chromium to 85.0.4183.140 Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen --- chromium/v8/src/debug/debug-interface.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'chromium/v8/src/debug/debug-interface.h') diff --git a/chromium/v8/src/debug/debug-interface.h b/chromium/v8/src/debug/debug-interface.h index 3a46cf9b391..e52bd1ba2a2 100644 --- a/chromium/v8/src/debug/debug-interface.h +++ b/chromium/v8/src/debug/debug-interface.h @@ -528,6 +528,7 @@ class PostponeInterruptsScope { class WeakMap : public v8::Object { public: + WeakMap() = delete; V8_EXPORT_PRIVATE V8_WARN_UNUSED_RESULT v8::MaybeLocal Get( v8::Local context, v8::Local key); V8_EXPORT_PRIVATE V8_WARN_UNUSED_RESULT v8::MaybeLocal Set( @@ -536,9 +537,6 @@ class WeakMap : public v8::Object { V8_EXPORT_PRIVATE static Local New(v8::Isolate* isolate); V8_INLINE static WeakMap* Cast(Value* obj); - - private: - WeakMap(); }; /** @@ -549,6 +547,7 @@ class WeakMap : public v8::Object { */ class V8_EXPORT_PRIVATE AccessorPair : public v8::Value { public: + AccessorPair() = delete; v8::Local getter(); v8::Local setter(); @@ -556,7 +555,6 @@ class V8_EXPORT_PRIVATE AccessorPair : public v8::Value { V8_INLINE static AccessorPair* Cast(v8::Value* obj); private: - AccessorPair(); static void CheckCast(v8::Value* obj); }; @@ -596,17 +594,17 @@ class PropertyIterator { // Wrapper around v8::internal::WasmValue. class V8_EXPORT_PRIVATE WasmValue : public v8::Value { public: + WasmValue() = delete; static bool IsWasmValue(v8::Local obj); V8_INLINE static WasmValue* Cast(v8::Value* obj); int value_type(); // Get the underlying values as a byte array, this is only valid if value_type // is i32, i64, f32, f64, or s128. v8::Local bytes(); - // Get the underlying anyref, only valid if value_type is anyref. + // Get the underlying externref, only valid if value_type is externref. v8::Local ref(); private: - WasmValue(); static void CheckCast(v8::Value* obj); }; -- cgit v1.2.1