Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: chrome/android/java/res/values/arrays.xml

Issue 1712943002: [Android] Simplify "network predictions" preference to a boolean value. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added bug link; rebased Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/res/xml/privacy_preferences.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 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 <resources> 6 <resources>
7 <!-- These must be kept in sync (and in-order) with components/dom_distiller/c ore/font_family_list.h --> 7 <!-- These must be kept in sync (and in-order) with components/dom_distiller/c ore/font_family_list.h -->
8 <string-array name="distiller_mode_font_family_values"> 8 <string-array name="distiller_mode_font_family_values">
9 <item>@string/sans_serif</item> 9 <item>@string/sans_serif</item>
10 <item>@string/serif</item> 10 <item>@string/serif</item>
11 <item>@string/monospace</item> 11 <item>@string/monospace</item>
12 </string-array> 12 </string-array>
13 13
14 <!-- Privacy preferences --> 14 <!-- Privacy preferences -->
15 <string-array name="bandwidth_entries">
16 <item>@string/always_prefetch_bandwidth_entry</item>
17 <item>@string/wifi_prefetch_bandwidth_entry</item>
18 <item>@string/never_prefetch_bandwidth_entry</item>
19 </string-array>
20 <string-array name="bandwidth_entry_values">
21 <item>@string/network_prediction_always_value</item>
22 <item>@string/network_prediction_wifi_only_value</item>
23 <item>@string/network_prediction_never_value</item>
24 </string-array>
25 <string-array name="crash_upload_entries"> 15 <string-array name="crash_upload_entries">
26 <item>@string/crash_dump_always_upload</item> 16 <item>@string/crash_dump_always_upload</item>
27 <item>@string/crash_dump_only_with_wifi</item> 17 <item>@string/crash_dump_only_with_wifi</item>
28 <item>@string/crash_dump_never_upload</item> 18 <item>@string/crash_dump_never_upload</item>
29 </string-array> 19 </string-array>
30 <string-array name="crash_upload_values"> 20 <string-array name="crash_upload_values">
31 <item>@string/crash_dump_always_upload_value</item> 21 <item>@string/crash_dump_always_upload_value</item>
32 <item>@string/crash_dump_only_with_wifi_value</item> 22 <item>@string/crash_dump_only_with_wifi_value</item>
33 <item>@string/crash_dump_never_upload_value</item> 23 <item>@string/crash_dump_never_upload_value</item>
34 </string-array> 24 </string-array>
35 25
36 </resources> 26 </resources>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/xml/privacy_preferences.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698