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

Unified Diff: chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc

Issue 10071033: RefCounted types should not have public destructors, chrome/browser/ part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering fixes as well 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/sync/glue/autofill_data_type_controller_unittest.cc
diff --git a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
index d8fc00b037fff5da458f896cbc15d0de997f7467..ba157ca7ab40059d7ea6ca66437324168b3f375b 100644
--- a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
+++ b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
@@ -37,7 +37,6 @@ using testing::Return;
class FakeWebDataService : public WebDataService {
public:
FakeWebDataService() : is_database_loaded_(false) {}
- virtual ~FakeWebDataService() {}
// Mark the database as loaded and send out the appropriate
// notification.
@@ -56,9 +55,11 @@ class FakeWebDataService : public WebDataService {
}
private:
- DISALLOW_COPY_AND_ASSIGN(FakeWebDataService);
+ virtual ~FakeWebDataService() {}
bool is_database_loaded_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeWebDataService);
};
class SyncAutofillDataTypeControllerTest : public testing::Test {

Powered by Google App Engine
This is Rietveld 408576698