| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 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 COMPONENTS_AUTOFILL_ANDROID_FORM_DATA_ANDROID_H_ |
| 6 #define COMPONENTS_AUTOFILL_ANDROID_FORM_DATA_ANDROID_H_ |
| 7 |
| 8 #include "base/android/jni_weak_ref.h" |
| 9 #include "base/android/scoped_java_ref.h" |
| 10 #include "components/autofill/core/common/form_data.h" |
| 11 |
| 12 namespace autofill { |
| 13 |
| 14 class FormFieldDataAndroid; |
| 15 |
| 16 // This class is native peer of FormData.java, make autofill::FormData |
| 17 // avaliable in Java. |
| 18 class FormDataAndroid { |
| 19 public: |
| 20 FormDataAndroid(const FormData& form); |
| 21 virtual ~FormDataAndroid(); |
| 22 |
| 23 base::android::ScopedJavaLocalRef<jobject> GetJavaPeer(); |
| 24 |
| 25 // Pull autofill values from Java side and return FormData. |
| 26 const FormData& PullAutofillValues(); |
| 27 |
| 28 base::android::ScopedJavaLocalRef<jobject> GetNextFormFieldData( |
| 29 JNIEnv* env, |
| 30 const base::android::JavaParamRef<jobject>& jcaller); |
| 31 |
| 32 // Get index of given field, return True and index of focus field if found. |
| 33 bool GetFieldIndex(const FormFieldData& field, size_t* index); |
| 34 |
| 35 // Get index of given field, return True and index of focus field if |
| 36 // similar field is found. |
| 37 bool GetSimilarFieldIndex(const FormFieldData& field, size_t* index); |
| 38 |
| 39 // Return true if this form is similar to the given form. |
| 40 bool SimilarFormAs(const FormData& form); |
| 41 |
| 42 void OnTextFieldDidChange(size_t index, const base::string16& value); |
| 43 |
| 44 private: |
| 45 FormData form_; |
| 46 FormFieldData* focus_field_; |
| 47 std::vector<std::unique_ptr<FormFieldDataAndroid>> fields_; |
| 48 JavaObjectWeakGlobalRef java_ref_; |
| 49 // index to popup fields to Java. |
| 50 size_t index_; |
| 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(FormDataAndroid); |
| 53 }; |
| 54 |
| 55 bool RegisterFormDataAndroid(JNIEnv* env); |
| 56 |
| 57 } // namespace autofill |
| 58 |
| 59 #endif // COMPONENTS_AUTOFILL_ANDROID_FORM_DATA_ANDROID_H_ |
| OLD | NEW |