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

Side by Side Diff: chrome/browser/autofill/i_auxiliary_profile_loader.h

Issue 12282004: Added personal_data_manager android implementation for auto-populating auto-fill on android builds … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 9 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
David Trainor- moved to gerrit 2013/02/27 07:49:28 I don't think we use i for an interface prefix (at
apiccion 2013/02/28 01:31:04 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_AUTOFILL_I_AUXILIARY_PROFILE_LOADER_H_
6 #define CHROME_BROWSER_AUTOFILL_I_AUXILIARY_PROFILE_LOADER_H_
7
8 #include <vector>
9 #include "base/string16.h"
10
11 class IAuxiliaryProfileLoader {
12 public:
13 virtual ~IAuxiliaryProfileLoader() {}
14
15 // Address info
16 virtual string16 GetStreet() = 0;
17 virtual string16 GetPobox() = 0;
18 virtual string16 GetNeighborhood() = 0;
19 virtual string16 GetRegion() = 0;
20 virtual string16 GetCity() = 0;
21 virtual string16 GetPostalCode() = 0;
22 virtual string16 GetCountry() = 0;
23
24 // Name info
25 virtual string16 GetFirstName() = 0;
26 virtual string16 GetMiddleName() = 0;
27 virtual string16 GetLastName() = 0;
28 virtual string16 GetSuffix() = 0;
29
30 // Email info
31 virtual std::vector<string16> GetEmailAddresses() = 0;
32
33 // Phone info
34 virtual std::vector<string16> GetPhoneNumbers() = 0;
35 };
36
37 #endif // CHROME_BROWSER_AUTOFILL_I_AUXILIARY_PROFILE_LOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698