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

Side by Side Diff: chrome/browser/ui/android/autofill/autofill_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 (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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698