| Index: chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
|
| diff --git a/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc b/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
|
| index 230b680119461bb589e5552988f34c7c50c80776..1b5214b918670d2916317dc8c90bccdc2a834e0f 100644
|
| --- a/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
|
| +++ b/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2020 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -17,6 +17,17 @@ AutofillProfileDataTypeController::AutofillProfileDataTypeController(
|
| profile,
|
| sync_service) {}
|
|
|
| +AutofillProfileDataTypeController::~AutofillProfileDataTypeController() {}
|
| +
|
| +syncable::ModelType AutofillProfileDataTypeController::type() {
|
| + return syncable::AUTOFILL_PROFILE;
|
| +}
|
| +
|
| +const char* AutofillProfileDataTypeController::name() const {
|
| + // For logging only.
|
| + return "autofill_profile";
|
| +}
|
| +
|
| ProfileSyncFactory::SyncComponents
|
| AutofillProfileDataTypeController::CreateSyncComponents(
|
| ProfileSyncService* profile_sync_service,
|
|
|