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

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

Issue 2646313005: Implement additional parts of the new ui for CBD. (Closed)
Patch Set: 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
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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent"
8 android:layout_height="match_parent"
9 android:orientation="vertical">
10
11 <FrameLayout
12 android:layout_weight="1"
13 android:layout_width="match_parent"
14 android:layout_height="0dp">
15 <ListView
16 android:id="@android:id/list"
17 android:layout_width="match_parent"
18 android:layout_height="match_parent"/>
19 </FrameLayout>
20
21 <LinearLayout
22 android:id="@+id/footer"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:gravity="center"
26 android:orientation="vertical">
27
28 <View style="@style/Divider"/>
29
30 <Button
31 android:id="@+id/clear_button"
32 style="@style/Base.Widget.AppCompat.Button.Borderless"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
35 android:text="@string/clear_data_delete"
36 android:textColor="@color/pref_accent_color" />
37 </LinearLayout>
38
39 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698