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 12 matching lines...) Expand all Loading... |
23 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); | 23 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); |
24 // TODO(melandory): https://crbug.com/590838 Introduce proper fix. | 24 // TODO(melandory): https://crbug.com/590838 Introduce proper fix. |
25 if (tab == nullptr) | 25 if (tab == nullptr) |
26 return; | 26 return; |
27 ScopedJavaLocalRef<jstring> java_message = | 27 ScopedJavaLocalRef<jstring> java_message = |
28 base::android::ConvertUTF16ToJavaString(env, message); | 28 base::android::ConvertUTF16ToJavaString(env, message); |
29 Java_AutoSigninSnackbarController_showSnackbar( | 29 Java_AutoSigninSnackbarController_showSnackbar( |
30 env, tab->GetJavaObject().obj(), java_message.obj()); | 30 env, tab->GetJavaObject().obj(), java_message.obj()); |
31 } | 31 } |
32 | 32 |
33 bool RegisterAutoSigninSnackbarController(JNIEnv* env) { | |
34 return RegisterNativesImpl(env); | |
35 } | |
OLD | NEW |