| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2017 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 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | 6 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:id="@+id/control_container" | 7 android:id="@+id/control_container" |
| 8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
| 9 android:layout_height="match_parent" | 9 android:layout_height="match_parent" > |
| 10 android:background="@color/google_grey_500" > | |
| 11 | 10 |
| 12 <!-- This view is unnecessary visually, but required for the LocationBarLayo
ut. --> | 11 <!-- This view is unnecessary visually, but required for the LocationBarLayo
ut. --> |
| 13 <org.chromium.chrome.browser.searchwidget.SearchActivityFadingBackgroundView | 12 <org.chromium.chrome.browser.searchwidget.SearchActivityFadingBackgroundView |
| 14 android:id="@+id/fading_focus_target" | 13 android:id="@+id/fading_focus_target" |
| 15 android:layout_width="0dp" | 14 android:layout_width="0dp" |
| 16 android:layout_height="0dp" /> | 15 android:layout_height="0dp" /> |
| 17 | 16 |
| 18 <ViewStub | 17 <ViewStub |
| 19 android:id="@+id/omnibox_results_container_stub" | 18 android:id="@+id/omnibox_results_container_stub" |
| 20 android:layout_width="match_parent" | 19 android:layout_width="match_parent" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 48 android:layout_marginEnd="@dimen/tablet_toolbar_start_padding_no
_buttons" /> | 47 android:layout_marginEnd="@dimen/tablet_toolbar_start_padding_no
_buttons" /> |
| 49 | 48 |
| 50 </FrameLayout> | 49 </FrameLayout> |
| 51 | 50 |
| 52 <FrameLayout | 51 <FrameLayout |
| 53 android:id="@+id/bottom_container" | 52 android:id="@+id/bottom_container" |
| 54 android:layout_width="match_parent" | 53 android:layout_width="match_parent" |
| 55 android:layout_height="match_parent" /> | 54 android:layout_height="match_parent" /> |
| 56 | 55 |
| 57 </FrameLayout> | 56 </FrameLayout> |
| OLD | NEW |