Chromium Code Reviews| Index: chrome/android/java/res/layout/http_auth_dialog.xml |
| diff --git a/chrome/android/java/res/layout/http_auth_dialog.xml b/chrome/android/java/res/layout/http_auth_dialog.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e3586d354ea9625a49038a687bcc6f6ff92d36d0 |
| --- /dev/null |
| +++ b/chrome/android/java/res/layout/http_auth_dialog.xml |
| @@ -0,0 +1,38 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
| +<!-- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
|
David Trainor- moved to gerrit
2014/07/07 21:00:41
2014?
Yaron
2014/07/08 00:22:25
Done.
|
| + |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. |
| +--> |
| + |
| +<TableLayout |
| + xmlns:android="http://schemas.android.com/apk/res/android" |
| + android:layout_width="match_parent" |
| + android:layout_height="match_parent" |
| + android:stretchColumns="1" |
| + android:paddingTop="5dp" |
| + android:paddingEnd="7dp" |
| + android:paddingBottom="5dp" |
| + android:paddingStart="7dp" > |
| + <TextView |
| + android:id="@+id/explanation" |
| + android:layout_width="match_parent" /> |
| + <TableRow> |
| + <TextView |
| + android:id="@+id/username_label" |
| + android:paddingStart="7dp"/> |
| + <EditText |
| + android:id="@+id/username" |
| + android:inputType="textNoSuggestions" |
| + android:contentDescription="@string/accessibility_http_auth_username_input" /> |
| + </TableRow> |
| + <TableRow> |
| + <TextView |
| + android:id="@+id/password_label" |
| + android:paddingStart="7dp"/> |
| + <EditText |
| + android:id="@+id/password" |
| + android:inputType="textPassword" |
| + android:contentDescription="@string/accessibility_http_auth_password_input" /> |
| + </TableRow> |
| +</TableLayout> |