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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 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.
3
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <TableLayout
9 xmlns:android="http://schemas.android.com/apk/res/android"
10 android:layout_width="match_parent"
11 android:layout_height="match_parent"
12 android:stretchColumns="1"
13 android:paddingTop="5dp"
14 android:paddingEnd="7dp"
15 android:paddingBottom="5dp"
16 android:paddingStart="7dp" >
17 <TextView
18 android:id="@+id/explanation"
19 android:layout_width="match_parent" />
20 <TableRow>
21 <TextView
22 android:id="@+id/username_label"
23 android:paddingStart="7dp"/>
24 <EditText
25 android:id="@+id/username"
26 android:inputType="textNoSuggestions"
27 android:contentDescription="@string/accessibility_http_auth_username _input" />
28 </TableRow>
29 <TableRow>
30 <TextView
31 android:id="@+id/password_label"
32 android:paddingStart="7dp"/>
33 <EditText
34 android:id="@+id/password"
35 android:inputType="textPassword"
36 android:contentDescription="@string/accessibility_http_auth_password _input" />
37 </TableRow>
38 </TableLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698