summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/android/form_data_android.h
blob: b54928f76d46c5c86cfeee1e4ffab1b5a0b992bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2017 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 COMPONENTS_AUTOFILL_ANDROID_FORM_DATA_ANDROID_H_
#define COMPONENTS_AUTOFILL_ANDROID_FORM_DATA_ANDROID_H_

#include "base/android/jni_weak_ref.h"
#include "base/android/scoped_java_ref.h"
#include "components/autofill/core/common/form_data.h"

namespace autofill {

class FormFieldDataAndroid;
class FormStructure;

// This class is native peer of FormData.java, to make autofill::FormData
// available in Java.
class FormDataAndroid {
 public:
  FormDataAndroid(const FormData& form);
  virtual ~FormDataAndroid();

  base::android::ScopedJavaLocalRef<jobject> GetJavaPeer(
      const FormStructure* form_structure);

  // Get autofill values from Java side and return FormData.
  const FormData& GetAutofillValues();

  base::android::ScopedJavaLocalRef<jobject> GetNextFormFieldData(
      JNIEnv* env,
      const base::android::JavaParamRef<jobject>& jcaller);

  // Get index of given field, return True and index of focus field if found.
  bool GetFieldIndex(const FormFieldData& field, size_t* index);

  // Get index of given field, return True and index of focus field if
  // similar field is found. This method compares less attributes than
  // GetFieldIndex() does, and should be used when field could be changed
  // dynamically, but the changed has no impact on autofill purpose, e.g. css
  // style change, see FormFieldData::SimilarFieldAs() for details.
  bool GetSimilarFieldIndex(const FormFieldData& field, size_t* index);

  // Return true if this form is similar to the given form.
  bool SimilarFormAs(const FormData& form);

  // Invoked when form field which specified by |index| is charged to new
  // |value|.
  void OnFormFieldDidChange(size_t index, const base::string16& value);

  void ApplyHeuristicFieldType(const FormStructure& form);

  const FormData& form_for_testing() { return form_; }

 private:
  FormData form_;
  std::vector<std::unique_ptr<FormFieldDataAndroid>> fields_;
  JavaObjectWeakGlobalRef java_ref_;
  // keep track of index when popping up fields to Java.
  size_t index_;

  DISALLOW_COPY_AND_ASSIGN(FormDataAndroid);
};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_ANDROID_FORM_DATA_ANDROID_H_