#ifndef EXTENSIONS_COMMON_UTILS_EXTENSION_TYPES_UTILS_H_
#define EXTENSIONS_COMMON_UTILS_EXTENSION_TYPES_UTILS_H_
#include "extensions/common/api/extension_types.h"
#include "extensions/common/mojom/execution_world.mojom-shared.h"
#include "extensions/common/mojom/run_location.mojom-shared.h"
namespace extensions {
mojom::RunLocation ConvertRunLocation(api::extension_types::RunAt run_at);
api::extension_types::RunAt ConvertRunLocationForAPI(mojom::RunLocation run_at);
mojom::ExecutionWorld ConvertExecutionWorld(
api::extension_types::ExecutionWorld world);
api::extension_types::ExecutionWorld ConvertExecutionWorldForAPI(
mojom::ExecutionWorld world);
}
#endif