// 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. #include "extensions/browser/install_prefs_helper.h" #include "extensions/browser/extension_prefs.h" namespace extensions { namespace { // An installation parameter bundled with an extension. constexpr PrefMap kInstallParamPrefMap = …; } // namespace std::string GetInstallParam(const ExtensionPrefs* prefs, const ExtensionId& extension_id) { … } void SetInstallParam(ExtensionPrefs* prefs, const ExtensionId& extension_id, std::string value) { … } } // namespace extensions