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

Unified Diff: components/user_prefs/tracked/tracked_preference_validation_delegate.h

Issue 2719833002: Convert TrackedPreferenceValidationDelegate into a mojo interface. (Closed)
Patch Set: Created 3 years, 9 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: components/user_prefs/tracked/tracked_preference_validation_delegate.h
diff --git a/components/user_prefs/tracked/tracked_preference_validation_delegate.h b/components/user_prefs/tracked/tracked_preference_validation_delegate.h
deleted file mode 100644
index d010df5aee35dd488fd42a02f40b9a21d7cc62fd..0000000000000000000000000000000000000000
--- a/components/user_prefs/tracked/tracked_preference_validation_delegate.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2014 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 COMPONENTS_USER_PREFS_TRACKED_TRACKED_PREFERENCE_VALIDATION_DELEGATE_H_
-#define COMPONENTS_USER_PREFS_TRACKED_TRACKED_PREFERENCE_VALIDATION_DELEGATE_H_
-
-#include <string>
-#include <vector>
-
-#include "components/user_prefs/tracked/pref_hash_store_transaction.h"
-
-namespace base {
-class DictionaryValue;
-class Value;
-}
-
-// A TrackedPreferenceValidationDelegate is notified of the results of each
-// tracked preference validation event.
-class TrackedPreferenceValidationDelegate {
- public:
- virtual ~TrackedPreferenceValidationDelegate() {}
-
- // Notifies observes of the result (|value_state|) of checking the atomic
- // |value| (which may be NULL) at |pref_path|. |is_personal| indicates whether
- // or not the value may contain personal information.
- virtual void OnAtomicPreferenceValidation(
- const std::string& pref_path,
- const base::Value* value,
- PrefHashStoreTransaction::ValueState value_state,
- PrefHashStoreTransaction::ValueState external_validation_value_state,
- bool is_personal) = 0;
-
- // Notifies observes of the result (|value_state|) of checking the split
- // |dict_value| (which may be NULL) at |pref_path|. |is_personal| indicates
- // whether or not the value may contain personal information.
- virtual void OnSplitPreferenceValidation(
- const std::string& pref_path,
- const base::DictionaryValue* dict_value,
- const std::vector<std::string>& invalid_keys,
- const std::vector<std::string>& external_validation_invalid_keys,
- PrefHashStoreTransaction::ValueState value_state,
- PrefHashStoreTransaction::ValueState external_validation_value_state,
- bool is_personal) = 0;
-};
-
-#endif // COMPONENTS_USER_PREFS_TRACKED_TRACKED_PREFERENCE_VALIDATION_DELEGATE_H_
« no previous file with comments | « components/user_prefs/tracked/tracked_atomic_preference.cc ('k') | components/user_prefs/tracked/tracked_split_preference.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698