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

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

Issue 1323613004: [Custom Tab]Adjust padding for "Powered by Chrome" prompt text (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/res/values/dimens.xml » ('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:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="wrap_content" 8 android:layout_height="wrap_content"
9 android:background="#f5f5f5" > 9 android:paddingTop="4dp" >
10 <View
11 android:layout_width="match_parent"
12 android:layout_height="1dp"
13 android:background="#e0e0e0" />
14 <TextView 10 <TextView
15 android:layout_width="match_parent" 11 android:layout_width="match_parent"
16 android:layout_height="@dimen/menu_footer_height" 12 android:layout_height="wrap_content"
17 android:paddingTop="1dp" 13 android:background="#f5f5f5"
14 android:paddingTop="8dp"
18 android:paddingStart="16dp" 15 android:paddingStart="16dp"
19 android:paddingEnd="16dp" 16 android:paddingEnd="16dp"
17 android:paddingBottom="8dp"
20 android:gravity="start|center_vertical" 18 android:gravity="start|center_vertical"
21 android:textSize="12sp" 19 android:textSize="12sp"
22 android:textColor="#616161" 20 android:textColor="#616161"
23 android:text="@string/powered_by_chrome_message" 21 android:text="@string/powered_by_chrome_message"
24 android:maxLines="1" /> 22 android:maxLines="1" />
23 <View
24 android:layout_width="match_parent"
25 android:layout_height="1dp"
26 android:background="#e0e0e0" />
25 </FrameLayout> 27 </FrameLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698