#include "extensions/renderer/id_generator_custom_bindings.h"
#include <stdint.h>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "extensions/renderer/script_context.h"
#include "v8/include/v8-function-callback.h"
namespace extensions {
IdGeneratorCustomBindings::IdGeneratorCustomBindings(ScriptContext* context)
: … { … }
void IdGeneratorCustomBindings::AddRoutes() { … }
void IdGeneratorCustomBindings::GetNextId(
const v8::FunctionCallbackInfo<v8::Value>& args) { … }
void IdGeneratorCustomBindings::GetNextScopedId(
const v8::FunctionCallbackInfo<v8::Value>& args) { … }
}