Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Side by Side Diff: chrome/android/java/res/layout/page_info_permission_row.xml

Issue 2879733002: [subresource_filter] Add a subtitle for Android Page Info (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/page_info/PageInfoPopup.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/page_info/PageInfoPopup.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698