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

Side by Side Diff: chrome/android/java/res/menu/history_manager_menu.xml

Issue 2542203002: [Android History] Add Android history manager UI and bridge (Closed)
Patch Set: Rebase, drop changes to time.* Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
5
6 <menu xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:chrome="http://schemas.android.com/apk/res-auto" >
8
9 <group android:id="@+id/normal_menu_group" >
10 <!-- TODO(twellington): add search and info button. -->
11 <item
12 android:id="@+id/close_menu_id"
13 android:icon="@drawable/btn_close"
14 android:title="@string/close"
15 chrome:showAsAction="ifRoom" />
16 </group>
17 <group
18 android:id="@+id/selection_mode_menu_group"
19 android:visible="false" >
20 <item
21 android:id="@+id/selection_mode_delete_menu_id"
22 android:icon="@drawable/ic_delete_white_24dp"
23 android:title="@string/remove"
24 chrome:showAsAction="ifRoom" />
25 <item
26 android:id="@+id/selection_mode_open_in_new_tab"
27 android:title="@string/contextmenu_open_in_new_tab"
28 chrome:showAsAction="never" />
29 <item
30 android:id="@+id/selection_mode_open_in_incognito"
31 android:title="@string/contextmenu_open_in_incognito_tab"
32 chrome:showAsAction="never" />
33 <!-- TODO(twellington): add copy link item -->
34 </group>
35 </menu>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/history_toolbar.xml ('k') | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698