Add bytecode implementation for translate tab

Add bytecode test
This commit is contained in:
deep
2022-07-27 02:58:27 -04:00
parent 26574343f2
commit ba128cbf8d
6 changed files with 47 additions and 0 deletions
@@ -0,0 +1,19 @@
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.infobar;
import android.graphics.Bitmap;
import androidx.annotation.ColorRes;
import org.chromium.chrome.R;
import org.chromium.components.infobars.InfoBar;
public class BraveTranslateCompactInfoBarBase extends InfoBar {
BraveTranslateCompactInfoBarBase(
int iconDrawableId, @ColorRes int iconTintId, CharSequence message, Bitmap iconBitmap) {
super(R.drawable.ic_translate, 0, null, null);
}
}