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

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

Issue 2772203004: Add progress and timeout dialogs for getting account management policy (Closed)
Patch Set: Updated strings and addressed comments 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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
4 found in the LICENSE file. -->
5 <LinearLayout
6 xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent"
8 android:layout_height="wrap_content"
9 android:gravity="center_vertical">
10
11 <ProgressBar
12 android:layout_width="32dp"
13 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"/>
19
20 <TextView
21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content"
23 android:layout_marginTop="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"
28 android:textSize="16sp"/>
29 </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