Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: components/webdata/autofill/autofill_webdata_service.h

Issue 13392014: Move c/b/webdata/ code to components/webdata/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pure merge Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698