OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AUTOFILL_POPUP_VIEW_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_POPUP_VIEW_ANDROID_H_ |
6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_POPUP_VIEW_ANDROID_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_POPUP_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 #include <stddef.h> | 9 #include <stddef.h> |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 AutofillPopupController* controller_; // weak. | 58 AutofillPopupController* controller_; // weak. |
59 | 59 |
60 // The index of the last item the user long-pressed (they will be shown a | 60 // The index of the last item the user long-pressed (they will be shown a |
61 // confirmation dialog). | 61 // confirmation dialog). |
62 int deleting_index_; | 62 int deleting_index_; |
63 | 63 |
64 // The corresponding java object. | 64 // The corresponding java object. |
65 base::android::ScopedJavaGlobalRef<jobject> java_object_; | 65 base::android::ScopedJavaGlobalRef<jobject> java_object_; |
66 | 66 |
| 67 // Popup view |
| 68 base::android::ScopedJavaGlobalRef<jobject> popup_view_; |
| 69 |
67 DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewAndroid); | 70 DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewAndroid); |
68 }; | 71 }; |
69 | 72 |
70 } // namespace autofill | 73 } // namespace autofill |
71 | 74 |
72 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_POPUP_VIEW_ANDROID_H_ | 75 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_POPUP_VIEW_ANDROID_H_ |
OLD | NEW |