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

Side by Side Diff: chrome/android/java/res/layout/signin_progress_bar_dialog.xml

Issue 2786943002: Fix progress and timeout dialog for getting account management policy (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/signin/ConfirmSyncDataStateMachine.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 <LinearLayout 5 <LinearLayout
6 xmlns:android="http://schemas.android.com/apk/res/android" 6 xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent" 7 android:gravity="center_vertical"
8 android:layout_height="wrap_content" 8 style="@style/AlertDialogContent">
9 android:gravity="center_vertical">
10 9
11 <ProgressBar 10 <ProgressBar
12 android:layout_width="32dp" 11 android:layout_width="32dp"
13 android:layout_height="32dp" 12 android:layout_height="32dp"
14 android:layout_marginTop="16dp"
15 android:layout_marginBottom="16dp"
16 android:layout_marginStart="16dp"
17 android:layout_marginEnd="8dp"
18 android:indeterminate="true"/> 13 android:indeterminate="true"/>
19 14
20 <TextView 15 <TextView
21 android:layout_width="wrap_content" 16 android:layout_width="wrap_content"
22 android:layout_height="wrap_content" 17 android:layout_height="wrap_content"
23 android:layout_marginTop="16dp" 18 android:layout_marginStart="16dp"
24 android:layout_marginBottom="16dp"
25 android:layout_marginStart="8dp"
26 android:layout_marginEnd="16dp"
27 android:text="@string/sign_in_getting_account_management_policy" 19 android:text="@string/sign_in_getting_account_management_policy"
28 android:textSize="16sp"/> 20 android:textSize="16sp"/>
29 </LinearLayout> 21 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/signin/ConfirmSyncDataStateMachine.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698