OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
7 xmlns:app="http://schemas.android.com/apk/res-auto" > | 7 xmlns:chrome="http://schemas.android.com/apk/res-auto" > |
8 | 8 |
9 <org.chromium.chrome.browser.preferences.TextMessagePreference | 9 <org.chromium.chrome.browser.preferences.TextMessagePreference |
10 android:title="@string/reduce_data_usage_description" /> | 10 android:title="@string/reduce_data_usage_description" /> |
11 <org.chromium.chrome.browser.preferences.TextMessagePreference | 11 <org.chromium.chrome.browser.preferences.TextMessagePreference |
12 android:title="@string/safe_browsing_description" /> | 12 android:title="@string/safe_browsing_description" /> |
13 <org.chromium.chrome.browser.preferences.TextMessagePreference | 13 <org.chromium.chrome.browser.preferences.TextMessagePreference |
14 android:title="@string/data_reduction_caveats_description" /> | 14 android:title="@string/data_reduction_caveats_description" /> |
15 <org.chromium.chrome.browser.preferences.TextMessagePreference | 15 <org.chromium.chrome.browser.preferences.TextMessagePreference |
16 android:key="data_reduction_experiment_text" | 16 android:key="data_reduction_experiment_text" |
17 android:title="@string/data_reduction_experiment_description" /> | 17 android:title="@string/data_reduction_experiment_description" /> |
18 <org.chromium.chrome.browser.preferences.HyperlinkPreference | 18 <org.chromium.chrome.browser.preferences.HyperlinkPreference |
19 android:key="data_reduction_experiment_link" | 19 android:key="data_reduction_experiment_link" |
20 android:title="@string/learn_more" | 20 android:title="@string/learn_more" |
21 app:url="@string/data_reduction_experiment_link_url" /> | 21 chrome:url="@string/data_reduction_experiment_link_url" |
22 <org.chromium.chrome.browser.preferences.TextMessagePreference | 22 chrome:imitateWebLink="true" /> |
| 23 <org.chromium.chrome.browser.preferences.HyperlinkPreference |
23 android:key="data_reduction_learn_more" | 24 android:key="data_reduction_learn_more" |
24 android:title="@string/learn_more" /> | 25 android:title="@string/learn_more" |
| 26 chrome:url="@string/reduce_data_usage_learn_url" |
| 27 chrome:imitateWebLink="true" /> |
25 </PreferenceScreen> | 28 </PreferenceScreen> |
OLD | NEW |