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

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

Issue 1688033002: Rename EnhancedBookmarks to Bookmarks, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments from #2 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
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 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkContentView 6 <org.chromium.chrome.browser.bookmarks.BookmarkContentView
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/eb_content_view" 8 android:id="@+id/eb_content_view"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="match_parent" > 10 android:layout_height="match_parent" >
11 11
12 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkRecyclerView 12 <org.chromium.chrome.browser.bookmarks.BookmarkRecyclerView
13 android:id="@+id/eb_items_container" 13 android:id="@+id/eb_items_container"
14 android:layout_width="match_parent" 14 android:layout_width="match_parent"
15 android:layout_height="match_parent" 15 android:layout_height="match_parent"
16 android:layout_alignParentBottom="true" 16 android:layout_alignParentBottom="true"
17 android:layout_below="@+id/eb_action_bar" 17 android:layout_below="@+id/eb_action_bar"
18 android:background="@android:color/white" 18 android:background="@android:color/white"
19 android:paddingBottom="8dp" 19 android:paddingBottom="8dp"
20 android:paddingTop="8dp" 20 android:paddingTop="8dp"
21 android:clipToPadding="false" 21 android:clipToPadding="false"
22 android:scrollbars="vertical" 22 android:scrollbars="vertical"
(...skipping 12 matching lines...) Expand all
35 android:textSize="16sp" 35 android:textSize="16sp"
36 android:visibility="gone" /> 36 android:visibility="gone" />
37 37
38 <org.chromium.chrome.browser.widget.LoadingView 38 <org.chromium.chrome.browser.widget.LoadingView
39 android:id="@+id/eb_initial_loading_view" 39 android:id="@+id/eb_initial_loading_view"
40 android:layout_width="wrap_content" 40 android:layout_width="wrap_content"
41 android:layout_height="wrap_content" 41 android:layout_height="wrap_content"
42 android:layout_centerInParent="true" 42 android:layout_centerInParent="true"
43 android:visibility="gone" /> 43 android:visibility="gone" />
44 44
45 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar 45 <org.chromium.chrome.browser.bookmarks.BookmarkActionBar
46 android:id="@id/eb_action_bar" 46 android:id="@id/eb_action_bar"
47 android:layout_width="match_parent" 47 android:layout_width="match_parent"
48 android:layout_height="?attr/actionBarSize" 48 android:layout_height="?attr/actionBarSize"
49 android:layout_alignParentTop="true" 49 android:layout_alignParentTop="true"
50 android:background="@color/enhanced_bookmark_appbar_background" > 50 android:background="@color/enhanced_bookmark_appbar_background" >
51 51
52 <org.chromium.chrome.browser.widget.NumberRollView 52 <org.chromium.chrome.browser.widget.NumberRollView
53 android:id="@+id/selection_mode_number" 53 android:id="@+id/selection_mode_number"
54 android:layout_width="wrap_content" 54 android:layout_width="wrap_content"
55 android:layout_height="match_parent" 55 android:layout_height="match_parent"
(...skipping 10 matching lines...) Expand all
66 66
67 <TextView 67 <TextView
68 android:id="@+id/down" 68 android:id="@+id/down"
69 android:layout_width="wrap_content" 69 android:layout_width="wrap_content"
70 android:layout_height="wrap_content" 70 android:layout_height="wrap_content"
71 android:layout_gravity="center_vertical" 71 android:layout_gravity="center_vertical"
72 android:singleLine="true" 72 android:singleLine="true"
73 android:textColor="@android:color/white" 73 android:textColor="@android:color/white"
74 android:textSize="20sp" /> 74 android:textSize="20sp" />
75 </org.chromium.chrome.browser.widget.NumberRollView> 75 </org.chromium.chrome.browser.widget.NumberRollView>
76 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar> 76 </org.chromium.chrome.browser.bookmarks.BookmarkActionBar>
77 77
78 <org.chromium.chrome.browser.widget.FadingShadowView 78 <org.chromium.chrome.browser.widget.FadingShadowView
79 android:id="@+id/shadow" 79 android:id="@+id/shadow"
80 android:layout_width="match_parent" 80 android:layout_width="match_parent"
81 android:layout_height="10dp" 81 android:layout_height="10dp"
82 android:layout_below="@id/eb_action_bar" /> 82 android:layout_below="@id/eb_action_bar" />
83 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkContentView> 83 </org.chromium.chrome.browser.bookmarks.BookmarkContentView>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/eb_main.xml ('k') | chrome/android/java/res/layout/eb_row_content.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698