<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 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"
    style="@style/AlertDialogContent"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbarStyle="outsideOverlay" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:textDirection="locale"
        android:id="@+id/batch_upload_dialog">

        <org.chromium.components.browser_ui.widget.MaterialSwitchWithTitleAndSummary
            android:id="@+id/batch_upload_dialog_bookmarks"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:visibility="gone"/>

        <View
          android:id="@+id/batch_upload_dialog_reading_list_top_separator"
          style="@style/HorizontalDivider"
          android:visibility="gone"/>

        <org.chromium.components.browser_ui.widget.MaterialSwitchWithTitleAndSummary
            android:id="@+id/batch_upload_dialog_reading_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:visibility="gone"/>

        <View
          android:id="@+id/batch_upload_dialog_passwords_top_separator"
          style="@style/HorizontalDivider"
          android:visibility="gone"/>

        <org.chromium.components.browser_ui.widget.MaterialSwitchWithTitleAndSummary
            android:id="@+id/batch_upload_dialog_passwords"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:visibility="gone"/>

    </LinearLayout>
</ScrollView>
