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

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

Issue 2781323004: Create a new Data Saver settings page that adds the site breakdown (Closed)
Patch Set: rebase 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
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
6 <TableRow
7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:settings="http://schemas.android.com/apk/res-auto"
9 android:id="@+id/site_row"
10 android:layout_width="match_parent">
11
12 <TextView
13 android:id="@+id/site_hostname"
14 android:layout_width="0dp"
15 android:layout_weight="0"
16 style="@style/DataUsageBreakdownColumnItem" />
17
18 <TextView
19 android:id="@+id/site_data_used"
20 android:layout_width="wrap_content"
21 android:gravity="end"
22 android:paddingStart="10dp"
23 style="@style/DataUsageBreakdownColumnItem" />
24
25 <TextView
26 android:id="@+id/site_data_saved"
27 android:layout_width="wrap_content"
28 android:gravity="end"
29 android:paddingStart="24dp"
30 style="@style/DataUsageBreakdownColumnItem" />
31 </TableRow>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/data_usage_breakdown.xml ('k') | chrome/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698