| 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 COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ |
| 6 #define COMPONENTS_AUTOFILL_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/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/supports_user_data.h" | 13 #include "base/supports_user_data.h" |
| 14 #include "components/autofill/browser/webdata/autofill_webdata.h" | 14 #include "components/autofill/core/browser/webdata/autofill_webdata.h" |
| 15 #include "components/autofill/core/common/form_field_data.h" | 15 #include "components/autofill/core/common/form_field_data.h" |
| 16 #include "components/webdata/common/web_data_results.h" | 16 #include "components/webdata/common/web_data_results.h" |
| 17 #include "components/webdata/common/web_data_service_base.h" | 17 #include "components/webdata/common/web_data_service_base.h" |
| 18 #include "components/webdata/common/web_data_service_consumer.h" | 18 #include "components/webdata/common/web_data_service_consumer.h" |
| 19 #include "components/webdata/common/web_database.h" | 19 #include "components/webdata/common/web_database.h" |
| 20 | 20 |
| 21 class WebDatabaseService; | 21 class WebDatabaseService; |
| 22 | 22 |
| 23 namespace content { | 23 namespace content { |
| 24 class BrowserContext; | 24 class BrowserContext; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 // invalidated in ShutdownOnUIThread(). | 116 // invalidated in ShutdownOnUIThread(). |
| 117 base::WeakPtrFactory<AutofillWebDataService> weak_ptr_factory_; | 117 base::WeakPtrFactory<AutofillWebDataService> weak_ptr_factory_; |
| 118 | 118 |
| 119 scoped_refptr<AutofillWebDataBackendImpl> autofill_backend_; | 119 scoped_refptr<AutofillWebDataBackendImpl> autofill_backend_; |
| 120 | 120 |
| 121 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService); | 121 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace autofill | 124 } // namespace autofill |
| 125 | 125 |
| 126 #endif // COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ | 126 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_H_ |
| OLD | NEW |