Durable Storage: Refactor browser test and test the basic "deny" flow.
[chromium-blink-merge.git] / chrome / android / java / res / layout / sync_custom_passphrase.xml
blob397f9df31e80600a47622cf5f94fbc1633cdd865
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3      Use of this source code is governed by a BSD-style license that can be
4      found in the LICENSE file. -->
6 <ScrollView
7     xmlns:android="http://schemas.android.com/apk/res/android"
8     android:layout_width="match_parent"
9     android:layout_height="wrap_content"
10     android:overScrollMode="ifContentScrolls">
11     <LinearLayout
12         android:orientation="vertical"
13         style="@style/AlertDialogContent">
14         <TextView
15             android:layout_width="match_parent"
16             android:layout_height="wrap_content"
17             android:layout_marginBottom="25dp"
18             android:text="@string/sync_custom_passphrase"/>
19         <org.chromium.chrome.browser.widget.AlertDialogEditText
20             android:id="@+id/passphrase"
21             android:hint="@string/sync_enter_custom_passphrase_hint"
22             android:layout_width="match_parent"
23             android:layout_height="wrap_content"
24             android:inputType="textPassword"
25             android:singleLine="true"
26             android:imeOptions="actionNext" />
27         <org.chromium.chrome.browser.widget.AlertDialogEditText
28             android:id="@+id/confirm_passphrase"
29             android:hint="@string/sync_enter_custom_passphrase_hint_confirm"
30             android:layout_width="match_parent"
31             android:layout_height="wrap_content"
32             android:inputType="textPassword"
33             android:singleLine="true"
34             android:imeOptions="actionDone" />
35     </LinearLayout>
36 </ScrollView>