| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2017 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 6 xmlns:tools="http://schemas.android.com/tools" | 6 xmlns:tools="http://schemas.android.com/tools" |
| 7 android:id="@+id/content_layer" | 7 android:id="@+id/content_layer" |
| 8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
| 9 android:layout_height="match_parent" | 9 android:layout_height="match_parent" |
| 10 android:minWidth="280dp" | 10 android:minWidth="280dp" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 android:visibility="gone"/> | 47 android:visibility="gone"/> |
| 48 </LinearLayout> | 48 </LinearLayout> |
| 49 <View | 49 <View |
| 50 android:id="@+id/context_divider" | 50 android:id="@+id/context_divider" |
| 51 android:layout_width="match_parent" | 51 android:layout_width="match_parent" |
| 52 android:layout_height="1dp" | 52 android:layout_height="1dp" |
| 53 android:background="#1e000000"/> | 53 android:background="#1e000000"/> |
| 54 <ListView | 54 <ListView |
| 55 android:id="@+id/selectable_items" | 55 android:id="@+id/selectable_items" |
| 56 android:layout_width="match_parent" | 56 android:layout_width="match_parent" |
| 57 android:layout_height="wrap_content" | 57 android:layout_height="0dp" |
| 58 android:layout_weight="1" |
| 58 android:paddingTop="8dp" | 59 android:paddingTop="8dp" |
| 59 android:paddingBottom="8dp" | 60 android:paddingBottom="8dp" |
| 60 android:dividerHeight="0dp" | 61 android:dividerHeight="0dp" |
| 61 android:divider="@null"/> | 62 android:divider="@null"/> |
| 62 </LinearLayout> | 63 </LinearLayout> |
| OLD | NEW |