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

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: 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeHttpAuthHandler.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..304c8dc095d5dd01280ff322ec933a85b6b5a5d6
--- /dev/null
+++ b/chrome/android/java/res/layout/http_auth_dialog.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2014 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.
+-->
+
+<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>
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeHttpAuthHandler.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698