// Copyright 2013 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_FLAGS_UI_PREF_SERVICE_FLAGS_STORAGE_H_ #define COMPONENTS_FLAGS_UI_PREF_SERVICE_FLAGS_STORAGE_H_ #include "base/memory/raw_ptr.h" #include "build/build_config.h" #include "build/chromeos_buildflags.h" #include "components/flags_ui/flags_storage.h" class PrefService; class PrefRegistrySimple; namespace user_prefs { class PrefRegistrySyncable; } namespace flags_ui { // Implements the FlagsStorage interface with a PrefService backend. // This is the implementation used on desktop Chrome for all users. class PrefServiceFlagsStorage : public FlagsStorage { … }; } // namespace flags_ui #endif // COMPONENTS_FLAGS_UI_PREF_SERVICE_FLAGS_STORAGE_H_