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

Unified Diff: components/autofill/core/browser/webdata/autofill_change.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/autofill/core/browser/webdata/autofill_change.h
diff --git a/components/autofill/core/browser/webdata/autofill_change.h b/components/autofill/core/browser/webdata/autofill_change.h
index fe421615e41c748bb41b429c0b37a2ea36a5bbcd..0e856570f94d66efa173cfb37dacb385df5051eb 100644
--- a/components/autofill/core/browser/webdata/autofill_change.h
+++ b/components/autofill/core/browser/webdata/autofill_change.h
@@ -41,7 +41,7 @@ class GenericAutofillChange {
class AutofillChange : public GenericAutofillChange<AutofillKey> {
public:
AutofillChange(Type type, const AutofillKey& key);
- virtual ~AutofillChange();
+ ~AutofillChange() override;
bool operator==(const AutofillChange& change) const {
return type() == change.type() && key() == change.key();
}
@@ -60,7 +60,7 @@ class AutofillProfileChange : public GenericAutofillChange<std::string> {
AutofillProfileChange(Type type,
const std::string& key,
const AutofillProfile* profile);
- virtual ~AutofillProfileChange();
+ ~AutofillProfileChange() override;
const AutofillProfile* profile() const { return profile_; }
bool operator==(const AutofillProfileChange& change) const;

Powered by Google App Engine
This is Rietveld 408576698