Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Side by Side Diff: chrome/browser/ui/android/snackbars/auto_signin_prompt_controller.cc

Issue 2146753002: Android: Remove unneeded RegisterNatives() calls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Android: Don't require RegisterNatives if there are none Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698