| 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 {
|
|
|