// Copyright 2020 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_UPDATER_PREFS_IMPL_H_ #define CHROME_UPDATER_PREFS_IMPL_H_ #include <memory> #include <string> #include "chrome/updater/lock.h" #include "chrome/updater/prefs.h" namespace base { class FilePath; } namespace updater { enum class UpdaterScope; class UpdaterPrefsImpl : public LocalPrefs, public GlobalPrefs { … }; } // namespace updater #endif // CHROME_UPDATER_PREFS_IMPL_H_