| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 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.widget.bottomsheet.BottomSheet | 6 <org.chromium.chrome.browser.widget.bottomsheet.BottomSheet |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:id="@+id/bottom_sheet" | 8 android:id="@+id/bottom_sheet" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" > | 10 android:layout_height="wrap_content" > |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 <ViewStub | 70 <ViewStub |
| 71 android:id="@+id/bottom_omnibox_results_container_stub" | 71 android:id="@+id/bottom_omnibox_results_container_stub" |
| 72 android:layout_width="match_parent" | 72 android:layout_width="match_parent" |
| 73 android:layout_height="wrap_content" | 73 android:layout_height="wrap_content" |
| 74 android:inflatedId="@+id/omnibox_results_container" | 74 android:inflatedId="@+id/omnibox_results_container" |
| 75 android:layout="@layout/omnibox_results_container" /> | 75 android:layout="@layout/omnibox_results_container" /> |
| 76 | 76 |
| 77 <ImageView | 77 <ImageView |
| 78 android:id="@+id/toolbar_shadow" | 78 android:id="@+id/toolbar_shadow" |
| 79 android:src="@drawable/toolbar_shadow" | 79 android:src="@drawable/bottom_toolbar_shadow" |
| 80 android:layout_width="match_parent" | 80 android:layout_width="match_parent" |
| 81 android:layout_height="wrap_content" | 81 android:layout_height="wrap_content" |
| 82 android:scaleType="fitXY" | 82 android:scaleType="fitXY" |
| 83 android:contentDescription="@null" /> | 83 android:contentDescription="@null" /> |
| 84 | 84 |
| 85 </org.chromium.chrome.browser.widget.bottomsheet.BottomSheet> | 85 </org.chromium.chrome.browser.widget.bottomsheet.BottomSheet> |
| OLD | NEW |