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

Side by Side Diff: chrome/android/java/res/layout/eb_search_core.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 <merge xmlns:android="http://schemas.android.com/apk/res/android"> 6 <merge xmlns:android="http://schemas.android.com/apk/res/android">
7 7
8 <android.support.v7.widget.Toolbar 8 <android.support.v7.widget.Toolbar
9 android:id="@+id/search_bar" 9 android:id="@+id/search_bar"
10 android:layout_width="match_parent" 10 android:layout_width="match_parent"
(...skipping 11 matching lines...) Expand all
22 android:singleLine="true" 22 android:singleLine="true"
23 android:textColor="#343434" 23 android:textColor="#343434"
24 android:textSize="20sp" /> 24 android:textSize="20sp" />
25 </android.support.v7.widget.Toolbar> 25 </android.support.v7.widget.Toolbar>
26 26
27 <View 27 <View
28 android:layout_width="match_parent" 28 android:layout_width="match_parent"
29 android:layout_height="1dp" 29 android:layout_height="1dp"
30 android:background="#E1E1E1" /> 30 android:background="#E1E1E1" />
31 31
32 <view class="org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkS earchView$HistoryResultSwitcher" 32 <view class="org.chromium.chrome.browser.bookmarks.BookmarkSearchView$Histor yResultSwitcher"
33 android:id="@+id/history_result_switcher" 33 android:id="@+id/history_result_switcher"
34 android:layout_width="match_parent" 34 android:layout_width="match_parent"
35 android:layout_height="match_parent" 35 android:layout_height="match_parent"
36 android:inAnimation="@android:anim/fade_in" 36 android:inAnimation="@android:anim/fade_in"
37 android:outAnimation="@android:anim/fade_out" > 37 android:outAnimation="@android:anim/fade_out" >
38 38
39 <ListView 39 <ListView
40 android:id="@+id/eb_history_list" 40 android:id="@+id/eb_history_list"
41 android:layout_width="match_parent" 41 android:layout_width="match_parent"
42 android:layout_height="match_parent" 42 android:layout_height="match_parent"
(...skipping 23 matching lines...) Expand all
66 android:drawableTop="@drawable/eb_logo_large" 66 android:drawableTop="@drawable/eb_logo_large"
67 android:gravity="center" 67 android:gravity="center"
68 android:padding="16dp" 68 android:padding="16dp"
69 android:text="@string/enhanced_bookmark_no_result" 69 android:text="@string/enhanced_bookmark_no_result"
70 android:textColor="#5B5B5B" 70 android:textColor="#5B5B5B"
71 android:textSize="16sp" /> 71 android:textSize="16sp" />
72 </ViewSwitcher> 72 </ViewSwitcher>
73 </view> 73 </view>
74 74
75 </merge> 75 </merge>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/eb_search.xml ('k') | chrome/android/java/res/layout/eb_search_row.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698