chromium/extensions/browser/api/user_scripts/user_scripts_api.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 EXTENSIONS_BROWSER_API_USER_SCRIPTS_USER_SCRIPTS_API_H_
#define EXTENSIONS_BROWSER_API_USER_SCRIPTS_USER_SCRIPTS_API_H_

#include "extensions/browser/extension_function.h"
#include "extensions/browser/extension_function_histogram_value.h"
#include "extensions/browser/scripting_utils.h"
#include "extensions/common/api/user_scripts.h"

namespace extensions {

class UserScriptsRegisterFunction : public ExtensionFunction {};

class UserScriptsGetScriptsFunction : public ExtensionFunction {};

class UserScriptsUnregisterFunction : public ExtensionFunction {};

class UserScriptsUpdateFunction : public ExtensionFunction {};

class UserScriptsConfigureWorldFunction : public ExtensionFunction {};

class UserScriptsGetWorldConfigurationsFunction : public ExtensionFunction {};

class UserScriptsResetWorldConfigurationFunction : public ExtensionFunction {};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_API_USER_SCRIPTS_USER_SCRIPTS_API_H_