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

Side by Side Diff: chrome/browser/prefs/tracked/tracked_atomic_preference.h

Issue 266553002: Add TrackedPreferenceValidationDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix expectations for android and cros Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PREFS_TRACKED_TRACKED_ATOMIC_PREFERENCE_H_ 5 #ifndef CHROME_BROWSER_PREFS_TRACKED_TRACKED_ATOMIC_PREFERENCE_H_
6 #define CHROME_BROWSER_PREFS_TRACKED_TRACKED_ATOMIC_PREFERENCE_H_ 6 #define CHROME_BROWSER_PREFS_TRACKED_TRACKED_ATOMIC_PREFERENCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 10 matching lines...) Expand all
21 const std::string& pref_path, 21 const std::string& pref_path,
22 size_t reporting_id, 22 size_t reporting_id,
23 size_t reporting_ids_count, 23 size_t reporting_ids_count,
24 PrefHashFilter::EnforcementLevel enforcement_level); 24 PrefHashFilter::EnforcementLevel enforcement_level);
25 25
26 // TrackedPreference implementation. 26 // TrackedPreference implementation.
27 virtual void OnNewValue(const base::Value* value, 27 virtual void OnNewValue(const base::Value* value,
28 PrefHashStoreTransaction* transaction) const OVERRIDE; 28 PrefHashStoreTransaction* transaction) const OVERRIDE;
29 virtual bool EnforceAndReport( 29 virtual bool EnforceAndReport(
30 base::DictionaryValue* pref_store_contents, 30 base::DictionaryValue* pref_store_contents,
31 PrefHashStoreTransaction* transaction) const OVERRIDE; 31 PrefHashStoreTransaction* transaction,
32 TrackedPreferenceValidationObserver* observer) const OVERRIDE;
erikwright (departed) 2014/05/14 00:39:26 This could probably be a constructor parameter / m
grt (UTC plus 2) 2014/05/14 18:57:22 I chose to make it a parameter here to avoid owner
erikwright (departed) 2014/05/14 21:24:06 I prefer it being a raw pointer because there is n
grt (UTC plus 2) 2014/05/15 01:43:11 sgtm. Done.
32 33
33 private: 34 private:
34 const std::string pref_path_; 35 const std::string pref_path_;
35 const TrackedPreferenceHelper helper_; 36 const TrackedPreferenceHelper helper_;
36 37
37 DISALLOW_COPY_AND_ASSIGN(TrackedAtomicPreference); 38 DISALLOW_COPY_AND_ASSIGN(TrackedAtomicPreference);
38 }; 39 };
39 40
40 #endif // CHROME_BROWSER_PREFS_TRACKED_TRACKED_ATOMIC_PREFERENCE_H_ 41 #endif // CHROME_BROWSER_PREFS_TRACKED_TRACKED_ATOMIC_PREFERENCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698