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

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

Issue 12412003: Initial UI structure for autofill dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Styling fixes Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 <?xml version="1.0" encoding="utf-8"?>
5 <merge xmlns:android="http://schemas.android.com/apk/res/android">
6 <FrameLayout
Ted C 2013/03/06 01:41:56 this block should be indented 4 and it's 2 here an
Yusuf 2013/03/06 19:50:00 Done.
7 android:layout_width="match_parent"
8 android:layout_height="wrap_content">
9 <ImageView
10 android:layout_width="wrap_content"
11 android:layout_height="44dp"
12 android:layout_gravity="left"
13 android:layout_margin="5dp"
14 android:src="@drawable/wallet_logo"/>
15 <Spinner
16 android:layout_width="200dp"
17 android:layout_height="wrap_content"
18 android:id="@+id/accounts_spinner"
19 android:layout_gravity="right"
20 android:layout_margin="10dp"/>
21 </FrameLayout>
22 </merge>
Ted C 2013/03/06 01:41:56 decrease indent.
Yusuf 2013/03/06 19:50:00 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698