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

Unified Diff: chrome/android/java/res/menu/bottom_sheet_nav_menu.xml

Issue 2738843003: [Home] Add a bottom navigation bar for the BottomSheet (Closed)
Patch Set: Move proguard exception to different file Created 3 years, 9 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
« no previous file with comments | « chrome/android/java/res/layout/main.xml ('k') | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/res/menu/bottom_sheet_nav_menu.xml
diff --git a/chrome/android/java/res/menu/bottom_sheet_nav_menu.xml b/chrome/android/java/res/menu/bottom_sheet_nav_menu.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c74e0d46fed8e16452caa53352bfdc358f71a3dc
--- /dev/null
+++ b/chrome/android/java/res/menu/bottom_sheet_nav_menu.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2017 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. -->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:id="@+id/action_home"
+ android:title="@string/accessibility_toolbar_btn_home"
+ android:icon="@drawable/ic_home_grey600_24dp" />
+ <!-- TODO(twellington): The padding on the downloads icon is slightly off.
+ Replace with a new asset when available. -->
+ <item android:id="@+id/action_downloads"
+ android:title="@string/menu_downloads"
+ android:icon="@drawable/ic_file_download_grey600_24dp" />
+ <item android:id="@+id/action_bookmarks"
+ android:title="@string/menu_bookmarks"
+ android:icon="@drawable/btn_star_filled" />
+ <item android:id="@+id/action_history"
+ android:title="@string/menu_history"
+ android:icon="@drawable/ic_history_grey600_24dp" />
+</menu>
« no previous file with comments | « chrome/android/java/res/layout/main.xml ('k') | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698