| Index: mobile/android/base/toolbar/BrowserToolbarPhoneBase.java |
| =================================================================== |
| --- a/mobile/android/base/toolbar/BrowserToolbarPhoneBase.java |
| +++ b/mobile/android/base/toolbar/BrowserToolbarPhoneBase.java |
| @@ -59,17 +59,18 @@ abstract class BrowserToolbarPhoneBase e |
| roundCornerShape = new Path(); |
| roundCornerShape.moveTo(0, 0); |
| roundCornerShape.lineTo(30, 0); |
| roundCornerShape.cubicTo(0, 0, 0, 0, 0, 30); |
| roundCornerShape.lineTo(0, 0); |
| roundCornerPaint = new Paint(); |
| roundCornerPaint.setAntiAlias(true); |
| - roundCornerPaint.setColor(ColorUtils.getColor(context, R.color.text_and_tabs_tray_grey)); |
| + // Using ABB color palette. See https://issues.adblockplus.org/ticket/3769 |
| + roundCornerPaint.setColor(ColorUtils.getColor(context, R.color.abb_background_light_grey)); |
| roundCornerPaint.setStrokeWidth(0.0f); |
| } |
| @Override |
| public void onAttachedToWindow() { |
| super.onAttachedToWindow(); |
| editCancel.setOnClickListener(new OnClickListener() { |