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

Unified Diff: chrome/browser/autofill/autofill_external_delegate_unittest.cc

Issue 10071036: RefCounted types should not have public destructors, chrome/browser/ part 6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation fixes Created 8 years, 8 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/autofill/autofill_external_delegate_unittest.cc
diff --git a/chrome/browser/autofill/autofill_external_delegate_unittest.cc b/chrome/browser/autofill/autofill_external_delegate_unittest.cc
index e0ba283f60935c83805430e9f0f8f6899e3a7b9e..1f1c918ea924e7beeb3a8f8a98ae034c1f15e0d3 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
« no previous file with comments | « chrome/browser/autocomplete_history_manager_unittest.cc ('k') | chrome/browser/background/background_contents_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698