chromium/components/browser_ui/widget/android/java/res/layout/modern_list_item_view.xml

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

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/content"
    style="@style/ListItemContainer" >

    <org.chromium.ui.widget.ChromeImageView
        android:id="@+id/start_icon"
        style="@style/ListItemStartIcon"
        android:importantForAccessibility="no" />

    <!-- Common title/description shared between list item views. -->
    <include layout="@layout/title_and_description_layout" />

    <org.chromium.ui.widget.ChromeImageButton
        android:id="@+id/end_button"
        android:visibility="gone"
        style="@style/ListItemEndIcon" />

</LinearLayout>