chromium/chrome/browser/extensions/api/preference/network_prediction_transformer.h

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

#ifndef CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_NETWORK_PREDICTION_TRANSFORMER_H_
#define CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_NETWORK_PREDICTION_TRANSFORMER_H_

#include <optional>
#include <string>

#include "chrome/browser/extensions/pref_transformer_interface.h"

namespace base {
class Value;
}  // namespace base

namespace extensions {

// Transform the networkPredictionEnabled property of the extension privacy API
// to NetworkPredictionOptions enum values.
class NetworkPredictionTransformer : public PrefTransformerInterface {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_NETWORK_PREDICTION_TRANSFORMER_H_