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

Unified Diff: chrome/android/java/res/layout/credential_picker_infobar_items.xml

Issue 861103002: Credentials chooser UI for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased on top of master Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698