Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: chrome/browser/ui/android/autofill/password_generation_popup_view_android.h

Issue 2103243002: Factor out ContentViewAndroidDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROI D_H_ 5 #ifndef CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROI D_H_
6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROI D_H_ 6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_ANDROI D_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 void UpdateBoundsAndRedrawPopup() override; 49 void UpdateBoundsAndRedrawPopup() override;
50 void PasswordSelectionUpdated() override; 50 void PasswordSelectionUpdated() override;
51 bool IsPointInPasswordBounds(const gfx::Point& point) override; 51 bool IsPointInPasswordBounds(const gfx::Point& point) override;
52 52
53 // Weak pointer to the controller. 53 // Weak pointer to the controller.
54 PasswordGenerationPopupController* controller_; 54 PasswordGenerationPopupController* controller_;
55 55
56 // The corresponding java object. 56 // The corresponding java object.
57 base::android::ScopedJavaGlobalRef<jobject> java_object_; 57 base::android::ScopedJavaGlobalRef<jobject> java_object_;
58 58
59 // Popup view to be anchored to the container.
60 base::android::ScopedJavaGlobalRef<jobject> popup_;
61
59 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewAndroid); 62 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewAndroid);
60 }; 63 };
61 64
62 } // namespace autofill 65 } // namespace autofill
63 66
64 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_AND ROID_H_ 67 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_AND ROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698