summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill
diff options
context:
space:
mode:
authorziadh@chromium.org <ziadh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-30 20:39:31 +0000
committerziadh@chromium.org <ziadh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-30 20:39:31 +0000
commit1bc6c551f14f237d5d56b18afb87ea1570483c1c (patch)
tree3a5b2c22e19d3d06d82580a88754e944d3aac7c3 /chrome/browser/autofill
parentde1e675607fb3f8fb34f90093f3b9500cf3f2e46 (diff)
downloadchromium_src-1bc6c551f14f237d5d56b18afb87ea1570483c1c.zip
chromium_src-1bc6c551f14f237d5d56b18afb87ea1570483c1c.tar.gz
chromium_src-1bc6c551f14f237d5d56b18afb87ea1570483c1c.tar.bz2
Add undeclared virtual destructors part 3
Preventative maintenance for abstract classes that do not declare virtual destructors. Base classes that do not declare their destructors as virtual could potentially lead to memory leaks. These files were discovered using the -Wnon-virtual-dtor flag in g++. r=jar BUG=47469 Review URL: http://codereview.chromium.org/3072010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54373 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill')
-rw-r--r--chrome/browser/autofill/auto_fill_editor_gtk.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/auto_fill_editor_gtk.cc b/chrome/browser/autofill/auto_fill_editor_gtk.cc
index f3d0e9f..e909d62 100644
--- a/chrome/browser/autofill/auto_fill_editor_gtk.cc
+++ b/chrome/browser/autofill/auto_fill_editor_gtk.cc
@@ -160,7 +160,7 @@ class AutoFillProfileEditor {
private:
friend class DeleteTask<AutoFillProfileEditor>;
- ~AutoFillProfileEditor() {}
+ virtual ~AutoFillProfileEditor() {}
void Init();
@@ -541,7 +541,7 @@ class AutoFillCreditCardEditor {
COL_COUNT
};
- ~AutoFillCreditCardEditor() {}
+ virtual ~AutoFillCreditCardEditor() {}
// Creates the GtkListStore used to show the billing addresses.
GtkListStore* CreateAddressStore();