Chromium Code Reviews| 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; | |
| 24 | |
| 25 void OnCredentialClicked(JNIEnv* env, | |
| 26 jobject obj, | |
| 27 jint credential_item, | |
| 28 jint credential_type); | |
| 29 | |
| 30 private: | |
| 31 // InfoBarAndroid implementation: | |
|
Peter Kasting
2015/02/18 00:23:05
Nit: Remove " implementation"
melandory
2015/02/18 21:15:34
Done.
| |
| 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 void ChooseCredential(int type, int index); | |
| 38 | |
| 39 DISALLOW_COPY_AND_ASSIGN(AccountChooserInfoBar); | |
| 40 }; | |
| 41 | |
| 42 // Registers native methods. | |
| 43 bool RegisterAccountChooserInfoBar(JNIEnv* env); | |
| 44 | |
| 45 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_ACCOUNT_CHOOSER_INFOBAR_H_ | |
| OLD | NEW |