#ifndef CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_
#define CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_
#include "base/compiler_specific.h"
#include "chrome/browser/flags_storage.h"
class PrefService;
namespace about_flags {
class PrefServiceFlagsStorage : public FlagsStorage {
public:
explicit PrefServiceFlagsStorage(PrefService *prefs);
virtual ~PrefServiceFlagsStorage();
virtual std::set<std::string> GetFlags() OVERRIDE;
virtual bool SetFlags(const std::set<std::string>& flags) OVERRIDE;
private:
PrefService* prefs_;
};
}
#endif