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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.h

Issue 657373004: Standardize usage of virtual/override/final in chrome/browser/safe_browsing/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/safe_browsing/incident_reporting/preference_validation_delegate.h
diff --git a/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.h b/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.h
index 6addfaef9f3a5ea5e1d6bb0e90ea0a921de54a11..c013993ab1a2a7a0af463ae0000fe802e3825a6c 100644
--- a/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.h
+++ b/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.h
@@ -19,16 +19,16 @@ class PreferenceValidationDelegate
public:
explicit PreferenceValidationDelegate(
const AddIncidentCallback& add_incident);
- virtual ~PreferenceValidationDelegate();
+ ~PreferenceValidationDelegate() override;
private:
// TrackedPreferenceValidationDelegate methods.
- virtual void OnAtomicPreferenceValidation(
+ void OnAtomicPreferenceValidation(
const std::string& pref_path,
const base::Value* value,
PrefHashStoreTransaction::ValueState value_state,
TrackedPreferenceHelper::ResetAction reset_action) override;
- virtual void OnSplitPreferenceValidation(
+ void OnSplitPreferenceValidation(
const std::string& pref_path,
const base::DictionaryValue* dict_value,
const std::vector<std::string>& invalid_keys,

Powered by Google App Engine
This is Rietveld 408576698