chromium/extensions/renderer/utils_native_handler.cc

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

#include "extensions/renderer/utils_native_handler.h"

#include "base/functional/bind.h"
#include "extensions/renderer/script_context.h"
#include "third_party/blink/public/web/web_serialized_script_value.h"

namespace extensions {

UtilsNativeHandler::UtilsNativeHandler(ScriptContext* context)
    :{}

UtilsNativeHandler::~UtilsNativeHandler() = default;

void UtilsNativeHandler::AddRoutes() {}

void UtilsNativeHandler::DeepCopy(
    const v8::FunctionCallbackInfo<v8::Value>& args) {}

void UtilsNativeHandler::IsInServiceWorker(
    const v8::FunctionCallbackInfo<v8::Value>& args) {}

}  // namespace extensions