| 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_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ |
| 6 #define COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| 11 #include "base/supports_user_data.h" | 11 #include "base/supports_user_data.h" |
| 12 #include "components/autofill/browser/webdata/autofill_webdata.h" | 12 #include "components/autofill/browser/webdata/autofill_webdata.h" |
| 13 #include "components/autofill/browser/webdata/autofill_webdata_backend.h" | 13 #include "components/autofill/browser/webdata/autofill_webdata_backend.h" |
| 14 #include "components/autofill/common/form_field_data.h" | 14 #include "components/autofill/common/form_field_data.h" |
| 15 #include "components/webdata/common/web_data_results.h" | 15 #include "components/webdata/common/web_data_results.h" |
| 16 #include "components/webdata/common/web_data_service_base.h" | 16 #include "components/webdata/common/web_data_service_base.h" |
| 17 #include "components/webdata/common/web_data_service_consumer.h" | 17 #include "components/webdata/common/web_data_service_consumer.h" |
| 18 #include "components/webdata/common/web_database.h" | 18 #include "components/webdata/common/web_database.h" |
| 19 #include "content/public/browser/browser_thread.h" |
| 19 | 20 |
| 20 class WebDataServiceBackend; | 21 class WebDataServiceBackend; |
| 21 | 22 |
| 22 namespace autofill { | 23 namespace autofill { |
| 23 | 24 |
| 24 class AutofillChange; | 25 class AutofillChange; |
| 25 class AutofillProfile; | 26 class AutofillProfile; |
| 26 class AutofillWebDataServiceObserverOnDBThread; | 27 class AutofillWebDataServiceObserverOnDBThread; |
| 27 class CreditCard; | 28 class CreditCard; |
| 28 | 29 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 scoped_refptr<WebDataServiceBackend> web_database_backend_; | 176 scoped_refptr<WebDataServiceBackend> web_database_backend_; |
| 176 | 177 |
| 177 base::Closure on_changed_callback_; | 178 base::Closure on_changed_callback_; |
| 178 | 179 |
| 179 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataBackendImpl); | 180 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataBackendImpl); |
| 180 }; | 181 }; |
| 181 | 182 |
| 182 } // namespace autofill | 183 } // namespace autofill |
| 183 | 184 |
| 184 #endif // COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ | 185 #endif // COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ |
| OLD | NEW |