Chromium Code Reviews| Index: chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java |
| diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java |
| index a88405063d3727f264b9f1226c9c57c1cb2bc31c..d21b529c3ec5689eb6deb0019409c824e5b9d9cd 100644 |
| --- a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java |
| +++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java |
| @@ -4,6 +4,7 @@ |
| package org.chromium.chrome.shell; |
| +import android.annotation.SuppressLint; |
| import android.content.Context; |
| import android.content.res.Configuration; |
| import android.graphics.drawable.ClipDrawable; |
| @@ -154,6 +155,7 @@ public class ChromeShellToolbar extends LinearLayout { |
| } |
| }); |
| menuButton.setOnTouchListener(new OnTouchListener() { |
| + @SuppressLint("ClickableViewAccessibility") |
|
aurimas (slooooooooow)
2014/08/12 02:47:55
This actually does not fix the bug, just adds a su
|
| @Override |
| public boolean onTouch(View view, MotionEvent event) { |
| return mAppMenuButtonHelper != null && mAppMenuButtonHelper.onTouch(view, event); |