| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2017 The Chromium Authors. All rights reserved. | 3 Copyright 2017 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <!-- Represents a single item in the Photo Picker. --> | 8 <!-- Represents a single item in the Photo Picker. --> |
| 9 | 9 |
| 10 <view class="org.chromium.chrome.browser.photo_picker.PickerBitmapView" | 10 <view class="org.chromium.chrome.browser.photo_picker.PickerBitmapView" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 android:layout_width="48dp" | 70 android:layout_width="48dp" |
| 71 android:layout_height="48dp" | 71 android:layout_height="48dp" |
| 72 android:contentDescription="@null" | 72 android:contentDescription="@null" |
| 73 android:tint="@color/photo_picker_special_tile_color" /> | 73 android:tint="@color/photo_picker_special_tile_color" /> |
| 74 | 74 |
| 75 <TextView | 75 <TextView |
| 76 android:id="@+id/special_tile_label" | 76 android:id="@+id/special_tile_label" |
| 77 android:layout_width="match_parent" | 77 android:layout_width="match_parent" |
| 78 android:layout_height="wrap_content" | 78 android:layout_height="wrap_content" |
| 79 android:layout_marginTop="@dimen/photo_picker_label_gap" | 79 android:layout_marginTop="@dimen/photo_picker_label_gap" |
| 80 android:fontFamily="sans-serif-medium" | |
| 81 android:gravity="center" | 80 android:gravity="center" |
| 82 android:textStyle="bold" | |
| 83 android:textSize="14sp" | 81 android:textSize="14sp" |
| 84 android:textAllCaps="true" | 82 android:textAllCaps="true" |
| 85 android:textColor="@color/photo_picker_special_tile_color" /> | 83 android:textColor="@color/photo_picker_special_tile_color" |
| 84 style="@style/RobotoMediumStyle" /> |
| 86 </LinearLayout> | 85 </LinearLayout> |
| 87 </view> | 86 </view> |
| OLD | NEW |