chromium/components/optimization_guide/core/model_execution/redactor.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 COMPONENTS_OPTIMIZATION_GUIDE_CORE_MODEL_EXECUTION_REDACTOR_H_
#define COMPONENTS_OPTIMIZATION_GUIDE_CORE_MODEL_EXECUTION_REDACTOR_H_

#include <memory>
#include <string>
#include <vector>

#include "components/optimization_guide/proto/redaction.pb.h"

namespace re2 {
class RE2;
}  // namespace re2

namespace optimization_guide {

enum class RedactResult {};

// Used to redact (or reject) text.
class Redactor final {};

}  // namespace optimization_guide

#endif  // COMPONENTS_OPTIMIZATION_GUIDE_CORE_MODEL_EXECUTION_REDACTOR_H_