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

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

Issue 378633002: Upstream support for basic Http authentication. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix indentation Created 6 years, 5 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/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>

Powered by Google App Engine
This is Rietveld 408576698