Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- | |
| 3 Copyright 2015 The Chromium Authors. All rights reserved. | |
| 4 | |
| 5 Use of this source code is governed by a BSD-style license that can be | |
| 6 found in the LICENSE file. | |
| 7 --> | |
| 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
|
gone
2015/09/18 21:02:42
After talking with Rebecca about this, we'll want
Lalit Maganti
2015/09/21 11:20:08
Acknowledged.
| |
| 9 android:layout_width="match_parent" | |
| 10 android:layout_height="wrap_content" | |
| 11 android:orientation="horizontal" | |
| 12 android:padding="8dp" > | |
| 13 | |
| 14 <ImageView | |
| 15 android:id="@+id/permission_group_infobar_item_icon" | |
| 16 android:contentDescription="@null" | |
| 17 android:layout_width="28dp" | |
| 18 android:layout_height="28dp" | |
| 19 android:layout_gravity="center_vertical" | |
| 20 android:layout_marginEnd="8dp" /> | |
| 21 | |
| 22 <TextView | |
| 23 android:id="@+id/permission_group_infobar_item_text" | |
| 24 android:text="@string/password_entry_editor_title" | |
| 25 android:textColor="@color/default_text_color" | |
| 26 android:textSize="14sp" | |
| 27 android:layout_width="0dp" | |
| 28 android:layout_height="wrap_content" | |
| 29 android:layout_gravity="center_vertical" | |
| 30 android:layout_weight="1" /> | |
| 31 | |
| 32 <Switch | |
| 33 android:id="@+id/permission_group_infobar_item_switch" | |
| 34 android:checked="true" | |
| 35 android:layout_marginStart="16dp" | |
| 36 android:layout_width="wrap_content" | |
| 37 android:layout_height="wrap_content" | |
| 38 android:layout_gravity="center_vertical" /> | |
| 39 </LinearLayout> | |
| OLD | NEW |