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

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

Issue 2652883002: Omnibox results show correctly for Chrome Home (Closed)
Patch Set: address comments 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/main.xml
diff --git a/chrome/android/java/res/layout/main.xml b/chrome/android/java/res/layout/main.xml
index a5ebb4c588bd5af528e24441abaa41a968b1b852..40c419784c06134ee5736ec696b9bd0d3d1b4816 100644
--- a/chrome/android/java/res/layout/main.xml
+++ b/chrome/android/java/res/layout/main.xml
@@ -20,11 +20,18 @@
android:layout_width="match_parent"
android:layout_height="match_parent" />
- <ViewStub
- android:id="@+id/omnibox_results_container_stub"
+ <View
+ android:id="@+id/fading_focus_target"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/tab_strip_height"
+ android:background="@color/omnibox_focused_fading_background_color"
+ android:visibility="gone" />
+
+ <ViewStub
+ android:id="@+id/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" />

Powered by Google App Engine
This is Rietveld 408576698