OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_ACCOUNT_CHOOSER_INFOBAR_H_ | |
6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_ACCOUNT_CHOOSER_INFOBAR_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 #include <string> | |
11 | |
12 #include "base/android/scoped_java_ref.h" | |
13 #include "base/macros.h" | |
14 #include "chrome/browser/ui/android/infobars/infobar_android.h" | |
15 | |
16 class AccountChooserInfoBarDelegateAndroid; | |
17 | |
18 // The Android infobar that allows user to choose credentials for login. | |
19 class AccountChooserInfoBar : public InfoBarAndroid { | |
20 public: | |
21 explicit AccountChooserInfoBar( | |
22 scoped_ptr<AccountChooserInfoBarDelegateAndroid> delegate); | |
23 ~AccountChooserInfoBar() override = default; | |
Peter Kasting
2015/02/18 21:44:17
Nit: Same comment
melandory
2015/02/19 13:38:01
Done.
| |
24 | |
25 void OnCredentialClicked(JNIEnv* env, | |
26 jobject obj, | |
27 jint credential_item, | |
28 jint credential_type); | |
29 | |
30 private: | |
31 // InfoBarAndroid: | |
32 virtual base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar( | |
33 JNIEnv* env) override; | |
34 virtual void ProcessButton(int action, | |
35 const std::string& action_value) override; | |
36 | |
37 DISALLOW_COPY_AND_ASSIGN(AccountChooserInfoBar); | |
38 }; | |
39 | |
40 // Registers native methods. | |
41 bool RegisterAccountChooserInfoBar(JNIEnv* env); | |
42 | |
43 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_ACCOUNT_CHOOSER_INFOBAR_H_ | |
OLD | NEW |