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

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

Issue 1557803002: [Custom Tabs] Implement Bottombar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify APIs Created 4 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 0d135a74b090720bbf89fefde71744adbedb9e9e..2c01934cd37b6ccfee54b18330fc54bc82eaa4cc 100644
--- a/chrome/android/java/res/layout/main.xml
+++ b/chrome/android/java/res/layout/main.xml
@@ -24,6 +24,18 @@
android:fillViewport="true"
android:scrollbars="none"
android:visibility="gone" />
+
+ <org.chromium.chrome.browser.widget.FadingShadowView
+ android:id="@+id/bottombar_shadow"
+ android:layout_width="match_parent"
+ android:layout_height="2dp"
+ android:layout_marginTop="-2dp"
+ android:visibility="gone" />
+
+ <ViewStub
+ android:id="@+id/buttombar_stub"
Yusuf 2016/01/06 06:51:14 bottombar
Ian Wen 2016/01/06 10:50:59 In this file all stubs are named as "ABC_stub", an
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
</LinearLayout>
<ViewStub
@@ -50,8 +62,7 @@
android:inflatedId="@+id/empty_container"
android:layout="@layout/empty_background_view"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- />
+ android:layout_height="match_parent" />
<!-- This empty view is used as the anchor for custom menu -->
<View
android:id="@+id/menu_anchor_stub"

Powered by Google App Engine
This is Rietveld 408576698