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

<resources>
    <declare-styleable name="ButtonPreference">
        <!-- The layout that will be used for the button. -->
        <attr name="buttonLayout" format="reference" />
    </declare-styleable>

    <declare-styleable name="ChromeBasePreference">
        <!-- The tint color for the icon set by android:icon. -->
        <attr name="iconTint" format="color" />
        <!-- Name of a user action that will be logged when this preference is clicked -->
        <attr name="userAction" format="string" />
    </declare-styleable>

    <declare-styleable name="SpinnerPreference">
        <!-- Used to change the SpinnerPreference to display the TextView and the Spinner on the
             same line. Devices with a smallest width of less than 360dp will still use two separate
             lines. -->
        <attr name="singleLine" format="boolean" />
    </declare-styleable>
</resources>
