Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 6 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:id="@+id/page_info_permission_row" | 7 android:id="@+id/page_info_permission_row" |
| 8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
| 9 android:layout_height="wrap_content" | 9 android:layout_height="wrap_content" |
| 10 android:paddingTop="12dp" > | 10 android:paddingTop="12dp" > |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 <TextView | 27 <TextView |
| 28 android:id="@+id/page_info_permission_unavailable_message" | 28 android:id="@+id/page_info_permission_unavailable_message" |
| 29 android:layout_width="match_parent" | 29 android:layout_width="match_parent" |
| 30 android:layout_height="wrap_content" | 30 android:layout_height="wrap_content" |
| 31 android:layout_below="@id/page_info_permission_status" | 31 android:layout_below="@id/page_info_permission_status" |
| 32 android:layout_toEndOf="@id/page_info_permission_icon" | 32 android:layout_toEndOf="@id/page_info_permission_icon" |
| 33 android:lineSpacingExtra="6dp" | 33 android:lineSpacingExtra="6dp" |
| 34 android:textColor="@color/page_info_popup_text_link" | 34 android:textColor="@color/page_info_popup_text_link" |
| 35 android:textSize="14sp" | 35 android:textSize="14sp" |
| 36 android:visibility="gone" /> | 36 android:visibility="gone" /> |
| 37 | |
| 38 <TextView | |
| 39 android:id="@+id/page_info_permission_subtitle" | |
| 40 android:layout_width="match_parent" | |
| 41 android:layout_height="wrap_content" | |
| 42 android:layout_below="@id/page_info_permission_status" | |
| 43 android:layout_toEndOf="@id/page_info_permission_icon" | |
| 44 android:lineSpacingExtra="6dp" | |
|
Bernhard Bauer
2017/05/12 09:24:36
Where is this value coming from? The linked mocks
Charlie Harrison
2017/05/12 12:31:32
I used this value to align with the page_info_perm
Charlie Harrison
2017/05/12 15:44:48
Update: I've checked with UI who confirmed that we
Bernhard Bauer
2017/05/12 15:51:00
I think I would use it for the TextView above as w
Charlie Harrison
2017/05/12 15:52:29
Sounds good. Should that have leading 20dp as well
Bernhard Bauer
2017/05/12 15:53:50
Yes please.
Charlie Harrison
2017/05/12 15:58:29
Done.
| |
| 45 android:textSize="14sp" | |
| 46 android:visibility="gone" /> | |
| 37 </RelativeLayout> | 47 </RelativeLayout> |
| OLD | NEW |