| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 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 android:title="@string/about_blimp_preferences"> | 7 android:title="@string/about_blimp_preferences"> |
| 8 <Preference | 8 <Preference |
| 9 android:key="application_version" | 9 android:key="application_version" |
| 10 android:title="@string/application_version_title" /> | 10 android:title="@string/application_version_title" /> |
| 11 <Preference | 11 <Preference |
| 12 android:key="os_version" | 12 android:key="os_version" |
| 13 android:title="@string/os_version_title" /> | 13 android:title="@string/os_version_title" /> |
| 14 <Preference | 14 <Preference |
| 15 android:key="blimp_engine_ip" | 15 android:key="blimp_engine_ip" |
| 16 android:title="@string/blimp_engine_ip" /> | 16 android:title="@string/blimp_engine_ip" /> |
| 17 <Preference | 17 <Preference |
| 18 android:key="blimp_engine_version" | 18 android:key="blimp_engine_version" |
| 19 android:title="@string/blimp_engine_version" /> | 19 android:title="@string/blimp_engine_version" /> |
| 20 <ListPreference | 20 <ListPreference |
| 21 android:key="blimp_assigner_url" | 21 android:key="blimp_assigner_url" |
| 22 android:title="@string/blimp_assigner_url" | 22 android:title="@string/blimp_assigner_url" |
| 23 android:entries="@array/assigner_envs" | 23 android:entries="@array/blimp_assigner_envs" |
| 24 android:entryValues="@array/assigner_urls" /> | 24 android:entryValues="@array/blimp_assigner_urls" /> |
| 25 </PreferenceScreen> | 25 </PreferenceScreen> |
| OLD | NEW |