| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_PROFILE_DATA_TYPE_CONT
ROLLER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_PROFILE_DATA_TYPE_CONT
ROLLER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_PROFILE_DATA_TYPE_CONT
ROLLER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_PROFILE_DATA_TYPE_CONT
ROLLER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/scoped_observer.h" | 11 #include "base/scoped_observer.h" |
| 12 #include "base/single_thread_task_runner.h" |
| 12 #include "components/autofill/core/browser/personal_data_manager_observer.h" | 13 #include "components/autofill/core/browser/personal_data_manager_observer.h" |
| 13 #include "components/sync/driver/async_directory_type_controller.h" | 14 #include "components/sync/driver/async_directory_type_controller.h" |
| 14 | 15 |
| 15 namespace autofill { | 16 namespace autofill { |
| 16 class AutofillWebDataService; | 17 class AutofillWebDataService; |
| 17 } // namespace autofill | 18 } // namespace autofill |
| 18 | 19 |
| 19 namespace browser_sync { | 20 namespace browser_sync { |
| 20 | 21 |
| 21 // Controls syncing of the AUTOFILL_PROFILE data type. | 22 // Controls syncing of the AUTOFILL_PROFILE data type. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 51 | 52 |
| 52 // Whether the database loaded callback has been registered. | 53 // Whether the database loaded callback has been registered. |
| 53 bool callback_registered_; | 54 bool callback_registered_; |
| 54 | 55 |
| 55 DISALLOW_COPY_AND_ASSIGN(AutofillProfileDataTypeController); | 56 DISALLOW_COPY_AND_ASSIGN(AutofillProfileDataTypeController); |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 } // namespace browser_sync | 59 } // namespace browser_sync |
| 59 | 60 |
| 60 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_PROFILE_DATA_TYPE_C
ONTROLLER_H_ | 61 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_PROFILE_DATA_TYPE_C
ONTROLLER_H_ |
| OLD | NEW |