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

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

Issue 1305233002: Delete obsolete auto_login_infobar_delegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 4 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 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="wrap_content" 9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"> 10 android:layout_height="wrap_content">
11 11
12 <!-- Lint flags this as a false positive overlap. --> 12 <!-- Lint flags this as a false positive overlap. -->
13 <!--suppress RelativeOverlap --> 13 <!--suppress RelativeOverlap -->
14 <RelativeLayout android:id="@+id/password_generation_suggestion" 14 <RelativeLayout android:id="@+id/password_generation_suggestion"
15 android:layout_width="wrap_content" 15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"> 16 android:layout_height="wrap_content">
17 17
18 <ImageView android:id="@+id/password_generation_icon" 18 <ImageView android:id="@+id/password_generation_icon"
19 android:layout_width="wrap_content" 19 android:layout_width="wrap_content"
20 android:layout_height="wrap_content" 20 android:layout_height="wrap_content"
21 android:layout_marginTop="13dp" 21 android:layout_marginTop="13dp"
22 android:layout_marginBottom="13dp" 22 android:layout_marginBottom="13dp"
23 android:layout_marginStart="@dimen/password_generation_horizontal_ma rgin" 23 android:layout_marginStart="@dimen/password_generation_horizontal_ma rgin"
24 android:layout_marginEnd="@dimen/password_generation_horizontal_marg in" 24 android:layout_marginEnd="@dimen/password_generation_horizontal_marg in"
25 android:src="@drawable/infobar_savepassword_autologin" 25 android:src="@drawable/infobar_savepassword"
26 android:contentDescription="@null" /> 26 android:contentDescription="@null" />
27 27
28 <TextView android:id="@+id/password_generation_title" 28 <TextView android:id="@+id/password_generation_title"
29 android:layout_toEndOf="@id/password_generation_icon" 29 android:layout_toEndOf="@id/password_generation_icon"
30 android:layout_width="wrap_content" 30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content" 31 android:layout_height="wrap_content"
32 android:paddingTop="@dimen/password_generation_text_vertical_margin" 32 android:paddingTop="@dimen/password_generation_text_vertical_margin"
33 android:paddingEnd="@dimen/password_generation_horizontal_margin" 33 android:paddingEnd="@dimen/password_generation_horizontal_margin"
34 android:singleLine="true" 34 android:singleLine="true"
35 android:textStyle="bold" 35 android:textStyle="bold"
(...skipping 15 matching lines...) Expand all
51 51
52 </RelativeLayout> 52 </RelativeLayout>
53 53
54 <View android:id="@+id/password_generation_divider" 54 <View android:id="@+id/password_generation_divider"
55 android:layout_below="@id/password_generation_suggestion" 55 android:layout_below="@id/password_generation_suggestion"
56 android:layout_width="wrap_content" 56 android:layout_width="wrap_content"
57 android:layout_height="@dimen/password_generation_divider_height" 57 android:layout_height="@dimen/password_generation_divider_height"
58 android:background="@color/password_generation_divider_color"/> 58 android:background="@color/password_generation_divider_color"/>
59 59
60 </RelativeLayout> 60 </RelativeLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/drawable-xxxhdpi/infobar_savepassword_autologin.png ('k') | chrome/app/generated_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698