| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #include "chrome/browser/ui/android/snackbars/auto_signin_prompt_controller.h" | 5 #include "chrome/browser/ui/android/snackbars/auto_signin_prompt_controller.h" |
| 6 | 6 |
| 7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "base/android/jni_string.h" | 8 #include "base/android/jni_string.h" |
| 9 #include "chrome/browser/android/tab_android.h" | 9 #include "chrome/browser/android/tab_android.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 base::string16 message = l10n_util::GetStringFUTF16( | 21 base::string16 message = l10n_util::GetStringFUTF16( |
| 22 IDS_MANAGE_PASSWORDS_AUTO_SIGNIN_TITLE, username); | 22 IDS_MANAGE_PASSWORDS_AUTO_SIGNIN_TITLE, username); |
| 23 | 23 |
| 24 JNIEnv* env = base::android::AttachCurrentThread(); | 24 JNIEnv* env = base::android::AttachCurrentThread(); |
| 25 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); | 25 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); |
| 26 // TODO(melandory): https://crbug.com/590838 Introduce proper fix. | 26 // TODO(melandory): https://crbug.com/590838 Introduce proper fix. |
| 27 if (tab == nullptr) | 27 if (tab == nullptr) |
| 28 return; | 28 return; |
| 29 ScopedJavaLocalRef<jstring> java_message = | 29 ScopedJavaLocalRef<jstring> java_message = |
| 30 base::android::ConvertUTF16ToJavaString(env, message); | 30 base::android::ConvertUTF16ToJavaString(env, message); |
| 31 Java_AutoSigninSnackbarController_showSnackbar( | 31 Java_AutoSigninSnackbarController_showSnackbar(env, tab->GetJavaObject(), |
| 32 env, tab->GetJavaObject().obj(), java_message.obj()); | 32 java_message); |
| 33 } | 33 } |
| 34 | 34 |
| OLD | NEW |