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

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

Issue 2614973002: [Signin] Update order of buttons in dialog for merging data (Closed)
Patch Set: Address nits Created 3 years, 11 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/ConfirmImportSyncDataDialog.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 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 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 5
6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:app="http://schemas.android.com/apk/res-auto" 7 xmlns:app="http://schemas.android.com/apk/res-auto"
8 android:layout_width="match_parent" 8 android:layout_width="match_parent"
9 android:layout_height="wrap_content" 9 android:layout_height="wrap_content"
10 android:overScrollMode="ifContentScrolls" 10 android:overScrollMode="ifContentScrolls"
11 android:paddingTop="25dp"
11 android:paddingEnd="25dp" 12 android:paddingEnd="25dp"
12 android:paddingStart="25dp"> 13 android:paddingStart="25dp">
13 14
14 <LinearLayout 15 <LinearLayout
16 android:id="@+id/sync_import_data_content"
15 android:layout_width="match_parent" 17 android:layout_width="match_parent"
16 android:layout_height="wrap_content" 18 android:layout_height="wrap_content"
17 android:orientation="vertical" 19 android:orientation="vertical">
18 android:paddingTop="8dp">
19 20
20 <TextView 21 <TextView
21 android:id="@+id/sync_import_data_prompt" 22 android:id="@+id/sync_import_data_prompt"
22 android:layout_width="wrap_content" 23 android:layout_width="wrap_content"
23 android:layout_height="wrap_content" 24 android:layout_height="wrap_content"
24 android:textColor="#de000000" 25 android:textColor="#de000000"
25 android:textSize="16sp" /> 26 android:textSize="16sp" />
26 27
27 <org.chromium.chrome.browser.widget.RadioButtonWithDescription 28 <org.chromium.chrome.browser.widget.RadioButtonWithDescription
28 android:id="@+id/sync_confirm_import_choice" 29 android:id="@+id/sync_confirm_import_choice"
29 android:layout_width="match_parent" 30 android:layout_width="match_parent"
30 android:layout_height="wrap_content" 31 android:layout_height="wrap_content"
31 android:paddingTop="16dp" 32 android:paddingTop="16dp"
32 app:titleText="@string/sync_import_existing_data" /> 33 app:titleText="@string/sync_import_existing_data" />
33 34
34 <org.chromium.chrome.browser.widget.RadioButtonWithDescription 35 <org.chromium.chrome.browser.widget.RadioButtonWithDescription
35 android:id="@+id/sync_keep_separate_choice" 36 android:id="@+id/sync_keep_separate_choice"
36 android:layout_width="match_parent" 37 android:layout_width="match_parent"
37 android:layout_height="wrap_content" 38 android:layout_height="wrap_content"
38 android:paddingTop="16dp" 39 android:paddingTop="16dp"
39 app:titleText="@string/sync_keep_existing_data_separate" /> 40 app:titleText="@string/sync_keep_existing_data_separate" />
40 41
41 </LinearLayout> 42 </LinearLayout>
42 </ScrollView> 43 </ScrollView>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/signin/ConfirmImportSyncDataDialog.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698