Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: chrome/browser/prefs/tracked_atomic_preference.h

Issue 114223002: Multi-strategy based tracking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use base::ScopedPtrHashMap Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/tracked_atomic_preference.h
diff --git a/chrome/browser/prefs/tracked_atomic_preference.h b/chrome/browser/prefs/tracked_atomic_preference.h
new file mode 100644
index 0000000000000000000000000000000000000000..e69d1829a0e2081216f885eaac39f48e0ed9a845
--- /dev/null
+++ b/chrome/browser/prefs/tracked_atomic_preference.h
@@ -0,0 +1,37 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PREFS_TRACKED_ATOMIC_PREFERENCE_H_
+#define CHROME_BROWSER_PREFS_TRACKED_ATOMIC_PREFERENCE_H_
+
+#include <string>
+
+#include "chrome/browser/prefs/tracked_preference.h"
+#include "chrome/browser/prefs/tracked_preference_helper.h"
+
+// A TrackedAtomicPreference is tracked as a whole. A hash is stored for its
+// entire value and it is entirely reset on mismatch.
+class TrackedAtomicPreference : public TrackedPreference {
+ public:
+ TrackedAtomicPreference(
+ const std::string& pref_path,
+ size_t reporting_id,
+ size_t reporting_ids_count,
+ TrackedPreferenceHelper::EnforcementLevel enforcement_level);
+
+ // TrackedPreference implementation.
+ virtual void StoreHash(const base::Value* value,
+ PrefHashStore* pref_hash_store) const OVERRIDE;
+ virtual void EnforceAndReport(
+ PrefHashStore* pref_hash_store,
+ base::DictionaryValue* pref_store_contents) const OVERRIDE;
+
+ private:
+ const std::string pref_path_;
+ const TrackedPreferenceHelper helper_;
+
+ DISALLOW_COPY_AND_ASSIGN(TrackedAtomicPreference);
+};
+
+#endif // CHROME_BROWSER_PREFS_TRACKED_ATOMIC_PREFERENCE_H_

Powered by Google App Engine
This is Rietveld 408576698