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 #include "chrome/browser/ui/android/infobars/save_password_infobar.h" | |
6 | |
7 #include "base/android/jni_android.h" | |
8 #include "base/android/jni_string.h" | |
9 #include "jni/SavePasswordInfoBar_jni.h" | |
10 | |
11 SavePasswordInfoBar::SavePasswordInfoBar( | |
12 scoped_ptr<SavePasswordInfoBarDelegate> delegate) | |
13 : ConfirmInfoBar(delegate.Pass()), | |
14 save_password_delegate_(delegate.Pass()) { | |
Bernhard Bauer
2015/03/03 16:54:20
You can't pass a scoped_ptr twice: on the technica
melandory
2015/03/05 17:15:12
Done.
| |
15 } | |
16 | |
17 SavePasswordInfoBar::~SavePasswordInfoBar() { | |
18 } | |
19 | |
20 base::android::ScopedJavaLocalRef<jobject> | |
21 SavePasswordInfoBar::CreateRenderInfoBar(JNIEnv* env) { | |
22 using base::android::ConvertUTF16ToJavaString; | |
23 base::android::ScopedJavaLocalRef<jstring> ok_button_text = | |
24 ConvertUTF16ToJavaString(env, | |
25 GetTextFor(ConfirmInfoBarDelegate::BUTTON_OK)); | |
26 base::android::ScopedJavaLocalRef<jstring> cancel_button_text = | |
27 ConvertUTF16ToJavaString( | |
28 env, GetTextFor(ConfirmInfoBarDelegate::BUTTON_CANCEL)); | |
29 base::android::ScopedJavaLocalRef<jstring> message_text = | |
30 ConvertUTF16ToJavaString(env, save_password_delegate_->GetMessageText()); | |
31 | |
32 return Java_SavePasswordInfoBar_show( | |
33 env, reinterpret_cast<intptr_t>(this), GetEnumeratedIconId(), | |
34 message_text.obj(), ok_button_text.obj(), cancel_button_text.obj(), | |
35 save_password_delegate_->ShouldShowMoreButton()); | |
36 } | |
37 | |
38 bool RegisterSavePasswordInfoBar(JNIEnv* env) { | |
39 return RegisterNativesImpl(env); | |
40 } | |
OLD | NEW |