| Index: chrome/android/java/res/layout/toolbar.xml
|
| diff --git a/chrome/android/java/res/layout/toolbar.xml b/chrome/android/java/res/layout/toolbar.xml
|
| index 0ab520e2241e6fec5ec19ef67313c707e89ab78e..0ae4a9159fdec73ea5cdc6c661e35c1da2b0512a 100644
|
| --- a/chrome/android/java/res/layout/toolbar.xml
|
| +++ b/chrome/android/java/res/layout/toolbar.xml
|
| @@ -48,15 +48,30 @@
|
| style="@style/ToolbarButton"
|
| android:layout_gravity="top"
|
| android:contentDescription="@string/accessibility_toolbar_btn_tabswitcher_toggle" />
|
| - <org.chromium.chrome.browser.widget.TintedImageButton
|
| - android:id="@+id/menu_button"
|
| - style="@style/ToolbarButton"
|
| - android:layout_gravity="top"
|
| - android:layout_width="42dp"
|
| - android:paddingEnd="4dp"
|
| - android:src="@drawable/btn_menu"
|
| - android:contentDescription="@string/accessibility_toolbar_btn_menu"
|
| - android:background="@null" />
|
| + <FrameLayout
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="wrap_content"
|
| + android:id="@+id/menu_btn_wrapper" >
|
| + <org.chromium.chrome.browser.widget.TintedImageButton
|
| + android:id="@+id/menu_button"
|
| + style="@style/ToolbarButton"
|
| + android:layout_gravity="top"
|
| + android:layout_width="42dp"
|
| + android:paddingEnd="4dp"
|
| + android:src="@drawable/btn_menu"
|
| + android:contentDescription="@string/accessibility_toolbar_btn_menu"
|
| + android:background="@null" />
|
| + <ImageView
|
| + android:id="@+id/menu_badge"
|
| + android:src="@drawable/badge_update"
|
| + android:layout_height="@dimen/menu_badge_size"
|
| + android:layout_width="@dimen/menu_badge_size"
|
| + android:layout_marginBottom="14dp"
|
| + android:layout_marginEnd="10dp"
|
| + android:layout_gravity="end|bottom"
|
| + android:contentDescription="@string/accessibility_toolbar_update_badge"
|
| + android:visibility="gone" />
|
| + </FrameLayout>
|
| </LinearLayout>
|
| <org.chromium.chrome.browser.widget.ToolbarProgressBar
|
| android:id="@+id/progress"
|
|
|