| OLD | NEW |
| 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.bookmarks.BookmarkContentView | 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/bookmark_content_view" | 8 android:id="@+id/bookmark_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" > |
| (...skipping 29 matching lines...) Expand all Loading... |
| 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.bookmarks.BookmarkActionBar | 45 <org.chromium.chrome.browser.bookmarks.BookmarkActionBar |
| 46 android:id="@id/bookmark_action_bar" | 46 android:id="@id/bookmark_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/appbar_background" > | 50 android:background="@color/appbar_background" /> |
| 51 | |
| 52 <include layout="@layout/number_roll_view" /> | |
| 53 | |
| 54 </org.chromium.chrome.browser.bookmarks.BookmarkActionBar> | |
| 55 | 51 |
| 56 <org.chromium.chrome.browser.widget.FadingShadowView | 52 <org.chromium.chrome.browser.widget.FadingShadowView |
| 57 android:id="@+id/shadow" | 53 android:id="@+id/shadow" |
| 58 android:layout_width="match_parent" | 54 android:layout_width="match_parent" |
| 59 android:layout_height="@dimen/action_bar_shadow_height" | 55 android:layout_height="@dimen/action_bar_shadow_height" |
| 60 android:layout_below="@id/bookmark_action_bar" /> | 56 android:layout_below="@id/bookmark_action_bar" /> |
| 61 </org.chromium.chrome.browser.bookmarks.BookmarkContentView> | 57 </org.chromium.chrome.browser.bookmarks.BookmarkContentView> |
| OLD | NEW |