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
;
30 const std::string
& origin_url
,
31 const std::string
& username
,
32 const base::string16
& password_value
) override
;
34 const ScopedVector
<autofill::PasswordForm
>& password_list
,
35 bool show_passwords
) override
;
36 void SetPasswordExceptionList(const ScopedVector
<autofill::PasswordForm
>&
37 password_exception_list
) override
;
40 base::android::ScopedJavaLocalRef
<jobject
> GetSavedPasswordEntry(
41 JNIEnv
* env
, jobject
, int index
);
42 base::android::ScopedJavaLocalRef
<jstring
>
43 GetSavedPasswordException(JNIEnv
* env
, jobject
, int index
);
44 void UpdatePasswordLists(JNIEnv
* env
, jobject
);
45 void HandleRemoveSavedPasswordEntry(JNIEnv
* env
, jobject
, int index
);
46 void HandleRemoveSavedPasswordException(JNIEnv
* env
, jobject
, int index
);
47 // Destroy the native implementation.
48 void Destroy(JNIEnv
*, jobject
);
51 static bool RegisterPasswordUIViewAndroid(JNIEnv
* env
);
54 PasswordManagerPresenter password_manager_presenter_
;
55 // Java side of UI controller.
56 JavaObjectWeakGlobalRef weak_java_ui_controller_
;
58 DISALLOW_COPY_AND_ASSIGN(PasswordUIViewAndroid
);
61 #endif // CHROME_BROWSER_ANDROID_PASSWORD_UI_VIEW_ANDROID_H_