chromium/third_party/blink/renderer/bindings/core/v8/active_script_wrappable_creation_key.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_ACTIVE_SCRIPT_WRAPPABLE_CREATION_KEY_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_ACTIVE_SCRIPT_WRAPPABLE_CREATION_KEY_H_

namespace blink {

// Creation key needed to instantiate ActiveScriptWrappable objects.
//
// By adding your class as friend below you acknowledge that you have checked
// alternatives for keeping the object alive, see class comment of
// `ActiveScriptWrappable`.
class ActiveScriptWrappableCreationKey final {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_ACTIVE_SCRIPT_WRAPPABLE_CREATION_KEY_H_