blob: 66054bf44409bf59b874426a5e05972290e1862c [file] [log] [blame]
// Copyright 2022 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_PREF_TRANSFORMER_INTERFACE_H_
#define CHROME_BROWSER_EXTENSIONS_PREF_TRANSFORMER_INTERFACE_H_
#include <string>
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace base {
class Value;
}
namespace extensions {
class PrefTransformerInterface {
public:
virtual ~PrefTransformerInterface() = default;
// Converts the representation of a preference as seen by the extension
// into a representation that is used in the pref stores of the browser.
// Returns the pref store representation in case of success or sets
// `error` and returns absl::nullopt otherwise. `bad_message` is passed
// to simulate the behavior of EXTENSION_FUNCTION_VALIDATE.
virtual absl::optional<base::Value> ExtensionToBrowserPref(
const base::Value& extension_pref,
std::string& error,
bool& bad_message) = 0;
// Converts the representation of the preference as stored in the browser
// into a representation that is used by the extension.
// Returns the extension representation in case of success or returns
// absl::nullopt otherwise.
virtual absl::optional<base::Value> BrowserToExtensionPref(
const base::Value& browser_pref,
bool is_incognito_profile) = 0;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_PREF_TRANSFORMER_INTERFACE_H_