| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2011 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2011 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 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:tools="http://schemas.android.com/tools" | 8 xmlns:tools="http://schemas.android.com/tools" |
| 9 tools:ignore="MissingTranslation"> | 9 tools:ignore="MissingTranslation"> |
| 10 | 10 |
| 11 <!-- Font to use when a spec asks for "Roboto Medium". | 11 <!-- Font to use when a spec asks for "Roboto Medium". |
| 12 Bolding the text makes it look almost, but not quite, entirely unlike R
oboto Medium, | 12 Bolding the text makes it look almost, but not quite, entirely unlike R
oboto Medium, |
| 13 which doesn't exist pre-L. --> | 13 which doesn't exist pre-L. --> |
| 14 <string name="roboto_medium_typeface">sans-serif</string> | 14 <string name="roboto_medium_typeface">sans-serif</string> |
| 15 <integer name="roboto_medium_textstyle">1</integer> | 15 <integer name="roboto_medium_textstyle">1</integer> |
| 16 | 16 |
| 17 <!-- Menu Animation Constants --> | 17 <!-- Menu Animation Constants --> |
| 18 <item type="fraction" format="fraction" name="menu_animation_pivot_x">95%</i
tem> | 18 <item type="fraction" format="fraction" name="menu_animation_pivot_x">95%</i
tem> |
| 19 | 19 |
| 20 <!-- Full Screen Constants --> | 20 <!-- Full Screen Constants --> |
| 21 <!-- These constants were chosen empirically for their visually pleasant beh
avior. | 21 <!-- These constants were chosen empirically for their visually pleasant beh
avior. |
| 22 Contact tedchoc@chromium.org or dtrainor@chromium.org for questions abo
ut | 22 Contact tedchoc@chromium.org or dtrainor@chromium.org for questions abo
ut |
| 23 changing these values. --> | 23 changing these values. --> |
| 24 <item name="top_controls_show_threshold" format="float" type="floats">0.5</i
tem> | 24 <item name="top_controls_show_threshold" format="float" type="dimen">0.5</it
em> |
| 25 <item name="top_controls_hide_threshold" format="float" type="floats">0.5</i
tem> | 25 <item name="top_controls_hide_threshold" format="float" type="dimen">0.5</it
em> |
| 26 | 26 |
| 27 <!-- The number of thumbnails that the thumbnail cache can hold. --> | 27 <!-- The number of thumbnails that the thumbnail cache can hold. --> |
| 28 <integer name="default_thumbnail_cache_size">5</integer> | 28 <integer name="default_thumbnail_cache_size">5</integer> |
| 29 <!-- The number of approximation thumbnails that the approximation cache can
hold. --> | 29 <!-- The number of approximation thumbnails that the approximation cache can
hold. --> |
| 30 <integer name="default_approximation_thumbnail_cache_size">32</integer> | 30 <integer name="default_approximation_thumbnail_cache_size">32</integer> |
| 31 <!-- The maximum size of the write queue in the thumbnail cache. --> | 31 <!-- The maximum size of the write queue in the thumbnail cache. --> |
| 32 <integer name="default_write_queue_size">5</integer> | 32 <integer name="default_write_queue_size">5</integer> |
| 33 <!-- The maximum size of the compression queue in the thumbnail cache. --> | 33 <!-- The maximum size of the compression queue in the thumbnail cache. --> |
| 34 <integer name="default_compression_queue_size">5</integer> | 34 <integer name="default_compression_queue_size">5</integer> |
| 35 <!-- Compositor Tab Title Text --> | 35 <!-- Compositor Tab Title Text --> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 61 <string name="help_context_change_sync_passphrase">change_sync_passphrase</s
tring> | 61 <string name="help_context_change_sync_passphrase">change_sync_passphrase</s
tring> |
| 62 | 62 |
| 63 <!-- Our manage space activity. Default pre-KitKat to be nothing. --> | 63 <!-- Our manage space activity. Default pre-KitKat to be nothing. --> |
| 64 <string name="manage_space_activity"></string> | 64 <string name="manage_space_activity"></string> |
| 65 | 65 |
| 66 <!-- Whether the device is a tablet or large tablet. Used to determine which
resources the OS | 66 <!-- Whether the device is a tablet or large tablet. Used to determine which
resources the OS |
| 67 loaded. --> | 67 loaded. --> |
| 68 <bool name="is_tablet">false</bool> | 68 <bool name="is_tablet">false</bool> |
| 69 <bool name="is_large_tablet">false</bool> | 69 <bool name="is_large_tablet">false</bool> |
| 70 </resources> | 70 </resources> |
| OLD | NEW |