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

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

Issue 1694093003: Rename EnhancedBookmarks to Bookmarks, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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 2015 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:minHeight="@dimen/enhanced_bookmark_minimum_dialog_size_tablet"
10 android:orientation="vertical" >
11
12 <android.support.v7.widget.Toolbar
13 android:id="@+id/toolbar"
14 android:layout_width="match_parent"
15 android:layout_height="?attr/actionBarSize"
16 android:background="?attr/colorPrimary" />
17
18 <View
19 android:layout_width="match_parent"
20 android:layout_height="4dp"
21 android:layout_marginBottom="-4dp"
22 android:background="@drawable/eb_title_bar_shadow" />
23
24 <ListView
25 android:id="@+id/eb_folder_list"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 android:paddingBottom="8dp"
29 android:paddingTop="8dp"
30 android:clipToPadding="false"
31 android:divider="@null"
32 android:dividerHeight="0dp" />
33
34 </LinearLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/eb_folder_row.xml ('k') | chrome/android/java/res/layout/eb_folder_select_item.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698