OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CHROME_BROWSER_WEBDATA_AUTOFILL_WEB_DATA_SERVICE_H_ | 5 #ifndef COMPONENTS_WEBDATA_AUTOFILL_AUTOFILL_WEBDATA_SERVICE_H_ |
6 #define CHROME_BROWSER_WEBDATA_AUTOFILL_WEB_DATA_SERVICE_H_ | 6 #define COMPONENTS_WEBDATA_AUTOFILL_AUTOFILL_WEBDATA_SERVICE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
12 #include "chrome/browser/api/webdata/autofill_web_data.h" | |
13 #include "chrome/browser/api/webdata/web_data_results.h" | |
14 #include "chrome/browser/api/webdata/web_data_service_base.h" | |
15 #include "chrome/browser/api/webdata/web_data_service_consumer.h" | |
16 #include "chrome/browser/webdata/web_database.h" | |
17 #include "components/autofill/common/form_field_data.h" | 12 #include "components/autofill/common/form_field_data.h" |
| 13 #include "components/webdata/autofill/autofill_webdata.h" |
| 14 #include "components/webdata/common/web_data_results.h" |
| 15 #include "components/webdata/common/web_data_service_base.h" |
| 16 #include "components/webdata/common/web_data_service_consumer.h" |
| 17 #include "components/webdata/common/web_database.h" |
18 | 18 |
19 class AutofillChange; | 19 class AutofillChange; |
20 class AutofillProfile; | 20 class AutofillProfile; |
21 class AutofillWebDataServiceObserverOnDBThread; | 21 class AutofillWebDataServiceObserverOnDBThread; |
22 class AutofillWebDataServiceObserverOnUIThread; | 22 class AutofillWebDataServiceObserverOnUIThread; |
23 class CreditCard; | 23 class CreditCard; |
24 class WebDatabaseService; | 24 class WebDatabaseService; |
25 | 25 |
26 namespace content { | 26 namespace content { |
27 class BrowserContext; | 27 class BrowserContext; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 void DestroyAutofillCreditCardResult(const WDTypedResult* result); | 122 void DestroyAutofillCreditCardResult(const WDTypedResult* result); |
123 | 123 |
124 void NotifyAutofillMultipleChangedOnUIThread(); | 124 void NotifyAutofillMultipleChangedOnUIThread(); |
125 | 125 |
126 ObserverList<AutofillWebDataServiceObserverOnDBThread> db_observer_list_; | 126 ObserverList<AutofillWebDataServiceObserverOnDBThread> db_observer_list_; |
127 ObserverList<AutofillWebDataServiceObserverOnUIThread> ui_observer_list_; | 127 ObserverList<AutofillWebDataServiceObserverOnUIThread> ui_observer_list_; |
128 | 128 |
129 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService); | 129 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService); |
130 }; | 130 }; |
131 | 131 |
132 #endif // CHROME_BROWSER_WEBDATA_AUTOFILL_WEB_DATA_SERVICE_H_ | 132 #endif // COMPONENTS_WEBDATA_AUTOFILL_AUTOFILL_WEBDATA_SERVICE_H_ |
OLD | NEW |