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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// Copyright (c) 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_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_
#define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_
#include <jni.h>
#include "base/android/jni_string.h"
#include "base/android/scoped_java_ref.h"
#include "chrome/browser/ui/autofill/autofill_dialog_controller.h"
#include "chrome/browser/ui/autofill/autofill_dialog_view.h"
namespace autofill {
// Android implementation of the Autofill dialog that handles the imperative
// autocomplete API call.
class AutofillDialogViewAndroid : public AutofillDialogView {
public:
explicit AutofillDialogViewAndroid(AutofillDialogController* controller);
virtual ~AutofillDialogViewAndroid();
// AutofillDialogView implementation:
virtual void Show() OVERRIDE;
virtual void Hide() OVERRIDE;
virtual void UpdateNotificationArea() OVERRIDE;
virtual void UpdateAccountChooser() OVERRIDE;
virtual void UpdateButtonStrip() OVERRIDE;
virtual void UpdateSection(DialogSection section,
UserInputAction action) OVERRIDE;
virtual void GetUserInput(DialogSection section,
DetailOutputMap* output) OVERRIDE;
virtual string16 GetCvc() OVERRIDE;
virtual bool SaveDetailsLocally() OVERRIDE;
virtual const content::NavigationController* ShowSignIn() OVERRIDE;
virtual void HideSignIn() OVERRIDE;
virtual void UpdateProgressBar(double value) OVERRIDE;
virtual void ModelChanged() OVERRIDE;
// Java to C++ calls
void ItemSelected(JNIEnv* env, jobject obj, jint section, jint index);
void AccountSelected(JNIEnv* env, jobject obj, jint index);
void EditingStart(JNIEnv* env, jobject obj, jint section);
jboolean EditingComplete(JNIEnv* env, jobject obj, jint section);
void EditingCancel(JNIEnv* env, jobject obj, jint section);
base::android::ScopedJavaLocalRef<jstring> ValidateField(
JNIEnv* env, jobject obj, jint type, jstring value);
void ValidateSection(JNIEnv* env, jobject obj, jint section);
void DialogSubmit(JNIEnv* env, jobject obj);
void DialogCancel(JNIEnv* env, jobject obj);
base::android::ScopedJavaLocalRef<jstring> GetLabelForSection(
JNIEnv* env,
jobject obj,
jint section);
base::android::ScopedJavaLocalRef<jobjectArray> GetListForField(JNIEnv* env,
jobject obj,
jint field);
void ContinueAutomaticSignin(JNIEnv* env, jobject obj,
jstring account_name, jstring sid, jstring lsid);
base::android::ScopedJavaLocalRef<jobject> GetIconForField(
JNIEnv* env,
jobject obj,
jint field_id,
jstring jinput);
base::android::ScopedJavaLocalRef<jstring> GetPlaceholderForField(
JNIEnv* env,
jobject obj,
jint section,
jint field_id);
static bool RegisterAutofillDialogViewAndroid(JNIEnv* env);
private:
// Returns the list of available user accounts.
std::vector<std::string> GetAvailableUserAccounts();
bool ValidateSection(DialogSection section,
AutofillDialogController::ValidationType type);
// Starts an automatic sign-in attempt for a given account.
bool StartAutomaticSignIn(const std::string& username);
// Updates the visibility of the checkbox to save the edited information
// locally.
void UpdateSaveLocallyCheckBox();
// The controller that drives this view. Weak pointer, always non-NULL.
AutofillDialogController* const controller_;
// The corresponding java object.
base::android::ScopedJavaGlobalRef<jobject> java_object_;
DISALLOW_COPY_AND_ASSIGN(AutofillDialogViewAndroid);
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_
|