| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_WEBDATA_SERVICE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "components/webdata/common/web_database.h" | 21 #include "components/webdata/common/web_database.h" |
| 22 | 22 |
| 23 class WebDatabaseService; | 23 class WebDatabaseService; |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class SingleThreadTaskRunner; | 26 class SingleThreadTaskRunner; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace autofill { | 29 namespace autofill { |
| 30 | 30 |
| 31 class AutofillChange; | |
| 32 class AutofillEntry; | 31 class AutofillEntry; |
| 33 class AutofillProfile; | 32 class AutofillProfile; |
| 34 class AutofillWebDataBackend; | 33 class AutofillWebDataBackend; |
| 35 class AutofillWebDataBackendImpl; | 34 class AutofillWebDataBackendImpl; |
| 36 class AutofillWebDataServiceObserverOnDBThread; | 35 class AutofillWebDataServiceObserverOnDBThread; |
| 37 class AutofillWebDataServiceObserverOnUIThread; | 36 class AutofillWebDataServiceObserverOnUIThread; |
| 38 class CreditCard; | 37 class CreditCard; |
| 39 | 38 |
| 40 // API for Autofill web data. | 39 // API for Autofill web data. |
| 41 class AutofillWebDataService : public AutofillWebData, | 40 class AutofillWebDataService : public AutofillWebData, |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 // This factory is used on the UI thread. All vended weak pointers are | 150 // This factory is used on the UI thread. All vended weak pointers are |
| 152 // invalidated in ShutdownOnUIThread(). | 151 // invalidated in ShutdownOnUIThread(). |
| 153 base::WeakPtrFactory<AutofillWebDataService> weak_ptr_factory_; | 152 base::WeakPtrFactory<AutofillWebDataService> weak_ptr_factory_; |
| 154 | 153 |
| 155 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService); | 154 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService); |
| 156 }; | 155 }; |
| 157 | 156 |
| 158 } // namespace autofill | 157 } // namespace autofill |
| 159 | 158 |
| 160 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ | 159 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ |
| OLD | NEW |