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

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

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:overScrollMode="ifContentScrolls">

    <LinearLayout
        android:orientation="vertical"
        style="@style/AlertDialogContent">

        <CheckedTextView
            android:id="@+id/keystore_passphrase_checkbox"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:minHeight="?android:attr/listPreferredItemHeightSmall"
            android:gravity="center_vertical"
            android:checkMark="?android:attr/listChoiceIndicatorSingle"
            android:paddingStart="24dp"
            android:paddingEnd="24dp"
            android:paddingTop="8dp"
            android:paddingBottom="8dp"
            android:text="@string/sync_passphrase_type_keystore"
            android:textAppearance="?android:attr/textAppearanceListItem" />

        <CheckedTextView
            android:id="@+id/explicit_passphrase_checkbox"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:minHeight="?android:attr/listPreferredItemHeightSmall"
            android:gravity="center_vertical"
            android:checkMark="?android:attr/listChoiceIndicatorSingle"
            android:paddingStart="24dp"
            android:paddingEnd="24dp"
            android:paddingTop="8dp"
            android:paddingBottom="8dp"
            android:text="@string/sync_passphrase_type_custom"
            android:textAppearance="?android:attr/textAppearanceListItem" />

        <org.chromium.ui.widget.TextViewWithClickableSpans
            android:id="@+id/reset_sync_link"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="25dp"
            android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />

    </LinearLayout>
</ScrollView>