Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | |
|
Theresa
2017/04/04 15:48:33
s/2016/2017
Finnur
2017/04/04 18:05:37
Done.
| |
| 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/file_picker_normal_menu_group" > | |
| 10 <item | |
| 11 android:id="@+id/close_menu_id" | |
| 12 android:icon="@drawable/btn_close" | |
| 13 android:title="@string/close" | |
| 14 chrome:showAsAction="ifRoom" /> | |
| 15 </group> | |
| 16 <group | |
| 17 android:id="@+id/file_picker_selection_mode_menu_group" | |
| 18 android:visible="false" > | |
| 19 <item | |
| 20 android:id="@+id/selection_mode_done_menu_id" | |
| 21 android:title="@string/done" | |
| 22 chrome:showAsAction="always" /> | |
| 23 </group> | |
| 24 </menu> | |
| OLD | NEW |