Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / android / autofill / password_generation_popup_view_android.h
blob806efa4829bfde7b6beb888e1753782062277f66
1 // Copyright 2014 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_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROID_H_
6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROID_H_
8 #include <jni.h>
10 #include "base/android/scoped_java_ref.h"
11 #include "base/compiler_specific.h"
12 #include "chrome/browser/ui/autofill/password_generation_popup_view.h"
14 namespace autofill {
16 class PasswordGenerationPopupController;
18 // The android implementation of the password generation UI.
19 class PasswordGenerationPopupViewAndroid : public PasswordGenerationPopupView {
20 public:
21 // Builds the UI for the |controller|.
22 explicit PasswordGenerationPopupViewAndroid(
23 PasswordGenerationPopupController* controller);
25 // Called from JNI when the "saved passwords" link was clicked.
26 void SavedPasswordsLinkClicked(JNIEnv* env, jobject obj);
28 // Called from JNI when the popup was dismissed.
29 void Dismissed(JNIEnv* env, jobject obj);
31 // Called from JNI when the suggested password was selected.
32 void PasswordSelected(JNIEnv* env, jobject object);
34 // Registers the popup with JNI.
35 static bool Register(JNIEnv* env);
37 private:
38 // The popup owns itself.
39 virtual ~PasswordGenerationPopupViewAndroid();
41 // PasswordGenerationPopupView implementation.
42 void Show() override;
43 void Hide() override;
44 gfx::Size GetPreferredSizeOfPasswordView() override;
45 void UpdateBoundsAndRedrawPopup() override;
46 void PasswordSelectionUpdated() override;
47 bool IsPointInPasswordBounds(const gfx::Point& point) override;
49 // Weak pointer to the controller.
50 PasswordGenerationPopupController* controller_;
52 // The corresponding java object.
53 base::android::ScopedJavaGlobalRef<jobject> java_object_;
55 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewAndroid);
58 } // namespace autofill
60 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROID_H_