Index: chrome/android/java/res/layout/autofill_menu_item.xml |
diff --git a/chrome/android/java/res/layout/autofill_menu_item.xml b/chrome/android/java/res/layout/autofill_menu_item.xml |
deleted file mode 100644 |
index 3a6c78d943f08866d0ee41feed313146e6e0f56d..0000000000000000000000000000000000000000 |
--- a/chrome/android/java/res/layout/autofill_menu_item.xml |
+++ /dev/null |
@@ -1,67 +0,0 @@ |
-<?xml version="1.0" encoding="utf-8"?> |
-<!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. |
- |
- Use of this source code is governed by a BSD-style license that can be |
- found in the LICENSE file. |
---> |
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
- android:id="@+id/autofill_menu_item" |
- android:layout_width="match_parent" |
- android:layout_height="@dimen/autofill_menu_item_size" |
- android:minHeight="@dimen/autofill_menu_item_size" |
- android:gravity="center_vertical" |
- android:orientation="horizontal"> |
- <LinearLayout |
- android:id="@+id/autofill_menu_text" |
- android:layout_width="0dp" |
- android:layout_height="wrap_content" |
- android:layout_weight="1" |
- android:orientation="vertical"> |
- <LinearLayout |
- android:id="@+id/autofill_menu_text" |
- android:layout_width="wrap_content" |
- android:layout_height="@dimen/autofill_menu_icon_height" |
- android:orientation="horizontal"> |
- <ImageView |
- android:id="@+id/cc_icon" |
- android:layout_width="@dimen/autofill_menu_icon_width" |
- android:layout_height="@dimen/autofill_menu_icon_height" |
- android:layout_marginStart="5dp"/> |
- <TextView |
- android:id="@+id/adapter_item_line_1" |
- android:layout_width="wrap_content" |
- android:layout_height="wrap_content" |
- android:textStyle="bold" |
- android:textSize="14sp" |
- android:ellipsize="end" |
- android:singleLine="true" |
- android:scrollHorizontally="true" |
- android:layout_marginStart="5dp"/> |
- </LinearLayout> |
- <TextView |
- android:id="@+id/adapter_item_line_2" |
- android:layout_width="wrap_content" |
- android:layout_height="wrap_content" |
- android:textSize="12sp" |
- android:ellipsize="end" |
- android:singleLine="true" |
- android:scrollHorizontally="true" |
- android:layout_marginStart="5dp"/> |
- </LinearLayout> |
- <Button |
- android:id="@+id/adapter_item_edit_button" |
- android:layout_width="wrap_content" |
- android:layout_height="wrap_content" |
- android:layout_marginStart="5dp" |
- android:textSize="12sp" |
- android:textStyle="bold" |
- android:focusable="false" |
- android:visibility="gone"/> |
- <EditText |
- android:layout_height="match_parent" |
- android:layout_width="wrap_content" |
- android:id="@+id/cvc_challenge" |
- android:visibility="gone" |
- android:drawablePadding="@dimen/autofill_menu_item_padding" |
- android:textSize="@dimen/autofill_edit_text_size"/> |
- </LinearLayout> |