Index: chrome/android/java/res/layout/custom_tabs_bottombar.xml |
diff --git a/chrome/android/java/res/layout/custom_tabs_bottombar.xml b/chrome/android/java/res/layout/custom_tabs_bottombar.xml |
index 3651d62436d744729b7c52b3bec1020199f7e78d..217263ba624b5328f5ed714f5360289145df66e0 100644 |
--- a/chrome/android/java/res/layout/custom_tabs_bottombar.xml |
+++ b/chrome/android/java/res/layout/custom_tabs_bottombar.xml |
@@ -2,9 +2,11 @@ |
<!-- Copyright 2015 The Chromium Authors. All rights reserved. |
Use of this source code is governed by a BSD-style license that can be |
found in the LICENSE file. --> |
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+<org.chromium.chrome.browser.widget.BoundedLinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ xmlns:chrome="http://schemas.android.com/apk/res-auto" |
android:id="@+id/bottombar" |
android:layout_width="match_parent" |
- android:layout_height="@dimen/toolbar_height_no_shadow" |
+ android:layout_height="wrap_content" |
+ chrome:maxHeight="@dimen/toolbar_height_no_shadow" |
newt (away)
2016/02/19 03:18:51
nit: put chrome:maxHeight after all the android at
Ian Wen
2016/02/26 18:32:52
Done.
|
android:orientation="horizontal" > |
-</LinearLayout> |
+</org.chromium.chrome.browser.widget.BoundedLinearLayout> |
newt (away)
2016/02/19 03:18:51
If you want, you can remove this line and change t
Ian Wen
2016/02/26 18:32:52
Done.
|