// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_PREFERENCES_TRACKED_TRACKED_PREFERENCE_H_ #define SERVICES_PREFERENCES_TRACKED_TRACKED_PREFERENCE_H_ #include "base/values.h" class PrefHashStoreTransaction; enum class TrackedPreferenceType { … }; // A TrackedPreference tracks changes to an individual preference, reporting and // reacting to them according to preference-specific and browser-wide policies. class TrackedPreference { … }; #endif // SERVICES_PREFERENCES_TRACKED_TRACKED_PREFERENCE_H_