// 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_FLAGS_STORAGE_H_ #define COMPONENTS_FLAGS_UI_FLAGS_STORAGE_H_ #include <set> #include <string> namespace flags_ui { // Base class for flags storage implementations. Enables the about_flags // functions to store and retrieve data from various sources like PrefService // and CrosSettings. class FlagsStorage { … }; } // namespace flags_ui #endif // COMPONENTS_FLAGS_UI_FLAGS_STORAGE_H_