diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-27 02:56:21 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-27 02:56:21 +0000 |
commit | 649d1c0ea7c08dec1586220da91a2ac3f73206ea (patch) | |
tree | da3ba2bd2812f1440827aac59c2e657c0b06a243 /chrome/browser/autofill/autofill_external_delegate_unittest.cc | |
parent | 3819c76919240d0470005263ae64761d7f7ed97f (diff) | |
download | chromium_src-649d1c0ea7c08dec1586220da91a2ac3f73206ea.zip chromium_src-649d1c0ea7c08dec1586220da91a2ac3f73206ea.tar.gz chromium_src-649d1c0ea7c08dec1586220da91a2ac3f73206ea.tar.bz2 |
RefCounted types should not have public destructors, chrome/browser/ part 6
BUG=123295
TEST=none
Review URL: http://codereview.chromium.org/10071036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134218 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_external_delegate_unittest.cc')
-rw-r--r-- | chrome/browser/autofill/autofill_external_delegate_unittest.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/autofill/autofill_external_delegate_unittest.cc b/chrome/browser/autofill/autofill_external_delegate_unittest.cc index e0ba283..1f1c918 100644 --- a/chrome/browser/autofill/autofill_external_delegate_unittest.cc +++ b/chrome/browser/autofill/autofill_external_delegate_unittest.cc @@ -55,13 +55,15 @@ class MockAutofillManager : public AutofillManager { public: explicit MockAutofillManager(TabContentsWrapper* tab_contents) : AutofillManager(tab_contents) {} - ~MockAutofillManager() {} MOCK_METHOD4(OnFillAutofillFormData, void(int query_id, const webkit::forms::FormData& form, const webkit::forms::FormField& field, int unique_id)); + + protected: + virtual ~MockAutofillManager() {} }; } // namespace |