#ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_SCRIPT_PROMISE_RESOLVER_WITH_TRACKER_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_SCRIPT_PROMISE_RESOLVER_WITH_TRACKER_H_
#include "base/metrics/histogram_functions.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
namespace blink {
template <typename ResultEnumType, typename IDLResolvedType>
class CORE_EXPORT ScriptPromiseResolverWithTracker
: public GarbageCollected<
ScriptPromiseResolverWithTracker<ResultEnumType, IDLResolvedType>>,
public ExecutionContextLifecycleObserver { … };
}
#endif