chromium/chrome/android/java/res/layout/powered_by_chrome_footer.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2015 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="4dp">
    <org.chromium.components.browser_ui.widget.text.TextViewWithCompoundDrawables
        android:id="@+id/running_in_chrome_footer_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/custom_tabs_menu_footer_margin_vertical"
        android:paddingBottom="@dimen/custom_tabs_menu_footer_margin_vertical"
        android:paddingStart="16dp"
        android:paddingEnd="16dp"
        android:gravity="start|center_vertical"
        android:maxLines="1"
        android:drawableStart="@mipmap/app_icon"
        android:drawablePadding="@dimen/custom_tabs_menu_footer_margin_horizontal"
        android:ellipsize="end"
        app:drawableWidth="@dimen/custom_tabs_menu_footer_icon_size"
        app:drawableHeight="@dimen/custom_tabs_menu_footer_icon_size"
        style="@style/TextAppearance.TextSmall.Secondary" />
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@macro/divider_line_bg_color" />
</FrameLayout>