1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_ANDROID_PASSWORD_UI_VIEW_ANDROID_H_
6 #define CHROME_BROWSER_ANDROID_PASSWORD_UI_VIEW_ANDROID_H_
10 #include "base/android/jni_weak_ref.h"
11 #include "base/android/scoped_java_ref.h"
12 #include "chrome/browser/password_manager/password_store_factory.h"
13 #include "chrome/browser/ui/passwords/password_manager_presenter.h"
14 #include "chrome/browser/ui/passwords/password_ui_view.h"
15 #include "components/password_manager/core/browser/password_store.h"
16 #include "components/password_manager/core/browser/password_store_consumer.h"
18 // PasswordUIView for Android, contains jni hooks that allows Android UI to
19 // display passwords and route UI commands back to native
20 // PasswordManagerPresenter.
21 class PasswordUIViewAndroid
: public PasswordUIView
{
23 PasswordUIViewAndroid(JNIEnv
* env
, jobject
);
24 ~PasswordUIViewAndroid() override
;
26 // PasswordUIView implementation.
27 Profile
* GetProfile() override
;
28 void ShowPassword(size_t index
,
29 const base::string16
& password_value
) override
;
31 const ScopedVector
<autofill::PasswordForm
>& password_list
,
32 bool show_passwords
) override
;
33 void SetPasswordExceptionList(const ScopedVector
<autofill::PasswordForm
>&
34 password_exception_list
) override
;
37 base::android::ScopedJavaLocalRef
<jobject
> GetSavedPasswordEntry(
38 JNIEnv
* env
, jobject
, int index
);
39 base::android::ScopedJavaLocalRef
<jstring
>
40 GetSavedPasswordException(JNIEnv
* env
, jobject
, int index
);
41 void UpdatePasswordLists(JNIEnv
* env
, jobject
);
42 void HandleRemoveSavedPasswordEntry(JNIEnv
* env
, jobject
, int index
);
43 void HandleRemoveSavedPasswordException(JNIEnv
* env
, jobject
, int index
);
44 // Destroy the native implementation.
45 void Destroy(JNIEnv
*, jobject
);
48 static bool RegisterPasswordUIViewAndroid(JNIEnv
* env
);
51 PasswordManagerPresenter password_manager_presenter_
;
52 // Java side of UI controller.
53 JavaObjectWeakGlobalRef weak_java_ui_controller_
;
55 DISALLOW_COPY_AND_ASSIGN(PasswordUIViewAndroid
);
58 #endif // CHROME_BROWSER_ANDROID_PASSWORD_UI_VIEW_ANDROID_H_