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

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

Issue 923803003: Fix up a few more lint warnings in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo changes in autofill_profile_editor Created 5 years, 9 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
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:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="wrap_content" 8 android:layout_height="wrap_content"
9 android:paddingTop="18dp" > 9 android:paddingTop="18dp" >
10 10
11 <ImageView 11 <ImageView
12 android:id="@+id/website_settings_permission_icon" 12 android:id="@+id/website_settings_permission_icon"
13 android:layout_width="@dimen/website_settings_popup_permission_icon_size " 13 android:layout_width="@dimen/website_settings_popup_permission_icon_size "
14 android:layout_height="@dimen/website_settings_popup_permission_icon_siz e" 14 android:layout_height="@dimen/website_settings_popup_permission_icon_siz e"
15 android:layout_marginEnd="16dp" /> 15 android:layout_marginEnd="16dp"
16 android:contentDescription="@null" />
16 17
17 <TextView 18 <TextView
18 android:id="@+id/website_settings_permission_name" 19 android:id="@+id/website_settings_permission_name"
19 android:layout_width="match_parent" 20 android:layout_width="match_parent"
20 android:layout_height="wrap_content" 21 android:layout_height="wrap_content"
21 android:layout_toEndOf="@id/website_settings_permission_icon" 22 android:layout_toEndOf="@id/website_settings_permission_icon"
22 android:textColor="#444444" 23 android:textColor="#444444"
23 android:textSize="14sp" 24 android:textSize="14sp"
24 android:textStyle="bold" /> 25 android:textStyle="bold" />
25 26
26 <Spinner 27 <Spinner
27 android:id="@+id/website_settings_permission_spinner" 28 android:id="@+id/website_settings_permission_spinner"
28 android:layout_width="match_parent" 29 android:layout_width="match_parent"
29 android:layout_height="wrap_content" 30 android:layout_height="wrap_content"
30 android:layout_toEndOf="@id/website_settings_permission_icon" 31 android:layout_toEndOf="@id/website_settings_permission_icon"
31 android:layout_below="@id/website_settings_permission_name" /> 32 android:layout_below="@id/website_settings_permission_name" />
32 33
33 <View 34 <View
34 android:layout_width="match_parent" 35 android:layout_width="match_parent"
35 android:layout_height="1dp" 36 android:layout_height="1dp"
36 android:layout_toEndOf="@id/website_settings_permission_icon" 37 android:layout_toEndOf="@id/website_settings_permission_icon"
37 android:layout_below="@id/website_settings_permission_spinner" 38 android:layout_below="@id/website_settings_permission_spinner"
38 android:background="#e5e5e5" /> 39 android:background="#e5e5e5" />
39 40
40 </RelativeLayout> 41 </RelativeLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/preference_category.xml ('k') | chrome/android/java/res/values/colors.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698