| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2015 The Chromium Authors. All rights reserved. | 3 Copyright 2015 The Chromium Authors. All rights reserved. |
| 4 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 9 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 xmlns:app="http://schemas.android.com/apk/res-auto" > | 10 xmlns:app="http://schemas.android.com/apk/res-auto" > |
| 11 | 11 |
| 12 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference | 12 <org.chromium.chrome.browser.preferences.ChromeSwitchPreference |
| 13 android:key="autofill_wallet_switch" | 13 android:key="autofill_wallet_switch" |
| 14 android:summaryOn="@string/text_on" | 14 android:summaryOn="@string/text_on" |
| 15 android:summaryOff="@string/text_off" /> | 15 android:summaryOff="@string/text_off" /> |
| 16 | 16 |
| 17 <org.chromium.chrome.browser.preferences.TextMessagePreference | 17 <org.chromium.chrome.browser.preferences.TextMessagePreference |
| 18 android:title="@string/autofill_wallet_description" /> | 18 android:title="@string/autofill_wallet_description" /> |
| 19 | 19 |
| 20 <org.chromium.chrome.browser.preferences.TextMessagePreference |
| 21 android:title="@string/autofill_wallet_cache_explanation" /> |
| 22 |
| 20 <org.chromium.chrome.browser.preferences.HyperlinkPreference | 23 <org.chromium.chrome.browser.preferences.HyperlinkPreference |
| 21 android:title="@string/autofill_wallet_management_link_text" | 24 android:title="@string/autofill_wallet_management_link_text" |
| 22 app:url="@string/autofill_manage_wallet_cards_url" | 25 app:url="@string/autofill_manage_wallet_cards_url" |
| 23 app:imitateWebLink="true" /> | 26 app:imitateWebLink="true" /> |
| 24 | 27 |
| 25 <org.chromium.chrome.browser.preferences.TextMessagePreference | |
| 26 android:title="@string/autofill_wallet_cache_explanation" /> | |
| 27 | |
| 28 <org.chromium.chrome.browser.preferences.ButtonPreference | 28 <org.chromium.chrome.browser.preferences.ButtonPreference |
| 29 android:key="autofill_clear_unmasked_cards" | 29 android:key="autofill_clear_unmasked_cards" |
| 30 android:title="@string/autofill_wallet_clear_unmasked_cards" /> | 30 android:title="@string/autofill_wallet_clear_unmasked_cards" /> |
| 31 | 31 |
| 32 </PreferenceScreen> | 32 </PreferenceScreen> |
| OLD | NEW |