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

Unified Diff: chrome/android/java/res/layout/bottom_control_container.xml

Issue 2652883002: Omnibox results show correctly for Chrome Home (Closed)
Patch Set: nit Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/bottom_control_container.xml
diff --git a/chrome/android/java/res/layout/bottom_control_container.xml b/chrome/android/java/res/layout/bottom_control_container.xml
index 5291218b7992724384e6936b9319e275601b6f52..f2c55c5a03bb0e4c5bd17a1545dec4ecf3082a25 100644
--- a/chrome/android/java/res/layout/bottom_control_container.xml
+++ b/chrome/android/java/res/layout/bottom_control_container.xml
@@ -20,7 +20,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
- android:id="@+id/toolbar_shadow"
+ android:id="@+id/bottom_toolbar_shadow"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_shadow_height"
android:src="@drawable/toolbar_shadow"
@@ -49,4 +49,19 @@
android:layout_height="match_parent"
android:background="@android:color/white" />
+ <ViewStub
+ android:id="@+id/bottom_omnibox_results_container_stub"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inflatedId="@+id/omnibox_results_container"
+ android:layout="@layout/omnibox_results_container" />
+
+ <ImageView
+ android:id="@+id/toolbar_shadow"
+ android:src="@drawable/toolbar_shadow"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:scaleType="fitXY"
+ android:contentDescription="@null" />
+
</org.chromium.chrome.browser.widget.BottomSheet>

Powered by Google App Engine
This is Rietveld 408576698