| 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 | 5 |
| 6 <TableRow | 6 <TableRow |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:settings="http://schemas.android.com/apk/res-auto" | 8 xmlns:settings="http://schemas.android.com/apk/res-auto" |
| 9 android:id="@+id/site_row" | 9 android:id="@+id/site_row" |
| 10 android:layout_width="match_parent"> | 10 android:layout_width="match_parent"> |
| 11 | 11 |
| 12 <TextView | 12 <TextView |
| 13 android:id="@+id/site_hostname" | 13 android:id="@+id/site_hostname" |
| 14 android:layout_width="0dp" | 14 android:layout_width="0dp" |
| 15 android:layout_weight="0" | 15 android:layout_weight="0" |
| 16 android:layout_gravity="start" |
| 16 style="@style/DataUsageBreakdownColumnItem" /> | 17 style="@style/DataUsageBreakdownColumnItem" /> |
| 17 | 18 |
| 18 <TextView | 19 <TextView |
| 19 android:id="@+id/site_data_used" | 20 android:id="@+id/site_data_used" |
| 20 android:layout_width="wrap_content" | 21 android:layout_width="wrap_content" |
| 22 android:layout_marginStart="24dp" |
| 21 android:gravity="end" | 23 android:gravity="end" |
| 22 android:paddingStart="10dp" | |
| 23 style="@style/DataUsageBreakdownColumnItem" /> | 24 style="@style/DataUsageBreakdownColumnItem" /> |
| 24 | 25 |
| 25 <TextView | 26 <TextView |
| 26 android:id="@+id/site_data_saved" | 27 android:id="@+id/site_data_saved" |
| 27 android:layout_width="wrap_content" | 28 android:layout_width="wrap_content" |
| 29 android:layout_marginStart="24dp" |
| 28 android:gravity="end" | 30 android:gravity="end" |
| 29 android:paddingStart="24dp" | |
| 30 style="@style/DataUsageBreakdownColumnItem" /> | 31 style="@style/DataUsageBreakdownColumnItem" /> |
| 31 </TableRow> | 32 </TableRow> |
| OLD | NEW |