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

Side by Side Diff: components/autofill/browser/personal_data_manager.h

Issue 13839013: Webdata Component tryjobs NOT FOR REVIEW (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: After WD/AF 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 COMPONENTS_AUTOFILL_BROWSER_PERSONAL_DATA_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_PERSONAL_DATA_MANAGER_H_
6 #define COMPONENTS_AUTOFILL_BROWSER_PERSONAL_DATA_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_BROWSER_PERSONAL_DATA_MANAGER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/scoped_vector.h" 13 #include "base/memory/scoped_vector.h"
14 #include "base/observer_list.h" 14 #include "base/observer_list.h"
15 #include "base/string16.h" 15 #include "base/string16.h"
16 #include "components/autofill/browser/autofill_profile.h" 16 #include "components/autofill/browser/autofill_profile.h"
17 #include "components/autofill/browser/credit_card.h" 17 #include "components/autofill/browser/credit_card.h"
18 #include "components/autofill/browser/field_types.h" 18 #include "components/autofill/browser/field_types.h"
19 #include "components/webdata/autofill/autofill_webdata_service_observer.h" 19 #include "components/autofill/browser/webdata/autofill_webdata_service_observer. h"
20 #include "components/webdata/common/web_data_service_consumer.h" 20 #include "components/webdata/common/web_data_service_consumer.h"
21 21
22 class AutofillMetrics; 22 class AutofillMetrics;
23 class FormStructure; 23 class FormStructure;
24 class PersonalDataManagerObserver; 24 class PersonalDataManagerObserver;
25 25
26 namespace autofill_helper { 26 namespace autofill_helper {
27 void SetProfiles(int, std::vector<AutofillProfile>*); 27 void SetProfiles(int, std::vector<AutofillProfile>*);
28 void SetCreditCards(int, std::vector<CreditCard>*); 28 void SetCreditCards(int, std::vector<CreditCard>*);
29 } 29 }
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 // For logging UMA metrics. Overridden by metrics tests. 270 // For logging UMA metrics. Overridden by metrics tests.
271 scoped_ptr<const AutofillMetrics> metric_logger_; 271 scoped_ptr<const AutofillMetrics> metric_logger_;
272 272
273 // Whether we have already logged the number of profiles this session. 273 // Whether we have already logged the number of profiles this session.
274 mutable bool has_logged_profile_count_; 274 mutable bool has_logged_profile_count_;
275 275
276 DISALLOW_COPY_AND_ASSIGN(PersonalDataManager); 276 DISALLOW_COPY_AND_ASSIGN(PersonalDataManager);
277 }; 277 };
278 278
279 #endif // COMPONENTS_AUTOFILL_BROWSER_PERSONAL_DATA_MANAGER_H_ 279 #endif // COMPONENTS_AUTOFILL_BROWSER_PERSONAL_DATA_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698