Chromium Code Reviews| Index: chrome/android/java/res/layout/credential_picker_infobar_items.xml |
| diff --git a/chrome/android/java/res/layout/credential_picker_infobar_items.xml b/chrome/android/java/res/layout/credential_picker_infobar_items.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8a4f54402cdf67318eb3cb48d49ea976daf1f9fa |
| --- /dev/null |
| +++ b/chrome/android/java/res/layout/credential_picker_infobar_items.xml |
| @@ -0,0 +1,24 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
|
newt (away)
2015/02/04 22:17:51
You should be able to get rid of this layout once
|
| +<!-- Copyright 2015 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:orientation="vertical" |
| + android:layout_height="wrap_content" |
| + android:layout_width="fill_parent"> |
| + <ScrollView |
| + android:id="@+id/credential_scroll" |
| + android:layout_width="fill_parent" |
| + android:layout_height="wrap_content"> |
| + <LinearLayout |
| + android:id="@+id/credential_picker_layout" |
| + android:layout_width="fill_parent" |
| + android:layout_height="wrap_content" |
| + android:padding="8dp" |
| + android:background="?attr/selectableItemBackground" |
| + android:orientation="vertical"/> |
| + </ScrollView> |
| + <include layout="@layout/credential_picker_buttonbar"/> |
| +</LinearLayout> |