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

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

Issue 1128683004: Revert to using system AlertDialog.Builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the test Created 5 years, 7 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/webapps/AddToHomescreenDialog.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 2015 The Chromium Authors. All rights reserved. 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 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 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 6 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 android:gravity="start" 7 android:gravity="start"
8 style="@style/AlertDialogContent" > 8 style="@style/AlertDialogContent" >
9 <ImageView 9 <ImageView
10 android:id="@+id/icon" 10 android:id="@+id/icon"
11 android:layout_width="32dp" 11 android:layout_width="32dp"
12 android:layout_height="32dp" 12 android:layout_height="32dp"
13 android:layout_marginTop="10dp" 13 android:layout_marginTop="10dp"
14 android:contentDescription="@null" 14 android:contentDescription="@null"
15 android:visibility="gone" /> 15 android:visibility="gone" />
16 <ProgressBar 16 <ProgressBar
17 android:id="@+id/spinny" 17 android:id="@+id/spinny"
18 android:layout_width="32dp" 18 android:layout_width="32dp"
19 android:layout_height="32dp" 19 android:layout_height="32dp"
20 android:layout_marginTop="10dp" /> 20 android:layout_marginTop="10dp" />
21 <EditText android:id="@+id/text" 21 <org.chromium.chrome.browser.widget.AlertDialogEditText
22 android:id="@+id/text"
22 android:inputType="text" 23 android:inputType="text"
23 android:layout_width="match_parent" 24 android:layout_width="match_parent"
24 android:layout_height="32dp" 25 android:layout_height="32dp"
25 android:textSize="18sp" 26 android:textSize="18sp"
26 android:singleLine="true" 27 android:singleLine="true"
27 android:paddingTop="0dp" 28 android:paddingTop="0dp"
28 android:layout_marginTop="10dp" 29 android:layout_marginTop="10dp"
29 android:layout_marginStart="48dp" /> 30 android:layout_marginStart="48dp" />
30 </FrameLayout> 31 </FrameLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/webapps/AddToHomescreenDialog.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698