| Index: chrome/browser/android/tab_web_contents_delegate_android.cc
|
| diff --git a/chrome/browser/android/tab_web_contents_delegate_android.cc b/chrome/browser/android/tab_web_contents_delegate_android.cc
|
| index 2298726ef3133f91d15673df9a32e760a9af52a0..eb913c3352a6c22c8eae5e70247f0a2e9ffb4c63 100644
|
| --- a/chrome/browser/android/tab_web_contents_delegate_android.cc
|
| +++ b/chrome/browser/android/tab_web_contents_delegate_android.cc
|
| @@ -420,13 +420,13 @@ void TabWebContentsDelegateAndroid::AddNewContents(
|
| delete new_contents;
|
| }
|
|
|
| -bool TabWebContentsDelegateAndroid::RequestAppBanner(
|
| +void TabWebContentsDelegateAndroid::RequestAppBannerFromDevTools(
|
| content::WebContents* web_contents) {
|
| JNIEnv* env = base::android::AttachCurrentThread();
|
| ScopedJavaLocalRef<jobject> obj = GetJavaDelegate(env);
|
| if (obj.is_null())
|
| - return false;
|
| - return Java_TabWebContentsDelegateAndroid_requestAppBanner(env, obj.obj());
|
| + return;
|
| + Java_TabWebContentsDelegateAndroid_requestAppBanner(env, obj.obj());
|
| }
|
|
|
| } // namespace android
|
|
|