chromium/extensions/renderer/bindings/js_runner.h

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

#ifndef EXTENSIONS_RENDERER_BINDINGS_JS_RUNNER_H_
#define EXTENSIONS_RENDERER_BINDINGS_JS_RUNNER_H_

#include <memory>
#include <optional>

#include "base/functional/callback.h"
#include "v8/include/v8.h"

namespace base {
class Value;
}

namespace extensions {

// A helper class to execute JS functions safely.
class JSRunner {};

}  // namespace extensions

#endif  // EXTENSIONS_RENDERER_BINDINGS_JS_RUNNER_H_