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

Unified Diff: chrome/browser/autofill/android/auxiliary_profile_loader_android.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: Fixed Nits 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/autofill/android/auxiliary_profile_loader_android.h
diff --git a/chrome/browser/autofill/android/auxiliary_profile_loader_android.h b/chrome/browser/autofill/android/auxiliary_profile_loader_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..57cde15ea99c8a30c03fecb682af32bbdf71ea4b
--- /dev/null
+++ b/chrome/browser/autofill/android/auxiliary_profile_loader_android.h
@@ -0,0 +1,67 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_AUTOFILL_ANDROID_AUXILIARY_PROFILE_LOADER_ANDROID_H_
+#define CHROME_BROWSER_AUTOFILL_ANDROID_AUXILIARY_PROFILE_LOADER_ANDROID_H_
+
+#include <vector>
+
+#include "base/android/jni_android.h"
+#include "base/string16.h"
+
+namespace autofill {
+
+bool RegisterAuxiliaryProfileLoader(JNIEnv* env);
+
+// This class loads user's contact information from their device.
+// The populated data corresponds to the user's 'Me' profile in their
+// contact list.
+class AuxiliaryProfileLoaderAndroid {
+ public:
+ AuxiliaryProfileLoaderAndroid();
+ virtual ~AuxiliaryProfileLoaderAndroid();
+
+ void Init(JNIEnv* env, const jobject& context);
Ilya Sherman 2013/03/11 22:39:44 nit: Docs.
Ilya Sherman 2013/03/11 22:39:44 nit: Please leave a blank line after this one.
apiccion 2013/03/13 20:17:28 Done.
+ // Returns address street.
+ virtual string16 GetStreet() const;
+ // Returns address post office box.
+ virtual string16 GetPostOfficeBox() const;
+ // Returns address neighborhood (e.g. Noe Valley, Nob Hill, Twin Peaks, ...).
+ virtual string16 GetNeighborhood() const;
+ // Returns address region such as state or province information
+ // (e.g. Ontario, California, Hubei).
+ virtual string16 GetRegion() const;
+ // Returns address city.
+ virtual string16 GetCity() const;
+ // Returns address postal code or zip code.
+ virtual string16 GetPostalCode() const;
+ // Returns address country.
+ virtual string16 GetCountry() const;
+
+ // Returns contact's first name.
+ virtual string16 GetFirstName() const;
+ // Returns contact's middle name.
+ virtual string16 GetMiddleName() const;
+ // Returns contact's last name.
+ virtual string16 GetLastName() const;
+ // Returns contact's suffix (e.g. Ph.D, M.D., ...).
+ virtual string16 GetSuffix() const;
+
+ // Populates string vector parameter with contact's email addresses.
+ virtual void GetEmailAddresses(std::vector<string16>* email_addresses) const;
+
+ // Populates string vector parameter with contact's phones numbers.
+ virtual void GetPhoneNumbers(std::vector<string16>* phone_numbers) const;
+
+ private:
+ JNIEnv* env_;
+ // The reference to java |PersonalAutofillPopulator| which
+ // actually extracts users contact information from the physical device
+ base::android::ScopedJavaLocalRef<jobject> populator_;
+ DISALLOW_COPY_AND_ASSIGN(AuxiliaryProfileLoaderAndroid);
+};
+
+} // namespace
+
+#endif // CHROME_BROWSER_AUTOFILL_ANDROID_AUXILIARY_PROFILE_LOADER_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698