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

Side by Side Diff: chrome/android/java/res/layout/four_button_menu_item.xml

Issue 934353003: Remove unused menu item types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove four_button_menu_item too Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/res/layout/two_button_menu_item.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent"
9 android:layout_height="?android:attr/listPreferredItemHeightSmall"
10 android:layout_gravity="top|start"
11 android:orientation="horizontal">
12
13 <org.chromium.chrome.browser.widget.TintedImageButton
14 android:id="@+id/button_one"
15 android:layout_width="59dp"
16 android:layout_height="match_parent"
17 android:paddingEnd="11dp"
18 android:background="?attr/listChoiceBackgroundIndicator"
19 android:scaleType="center" />
20
21 <org.chromium.chrome.browser.widget.TintedImageButton
22 android:id="@+id/button_two"
23 android:layout_width="70dp"
24 android:layout_height="match_parent"
25 android:paddingStart="11dp"
26 android:paddingEnd="11dp"
27 android:background="?attr/listChoiceBackgroundIndicator"
28 android:scaleType="center" />
29
30 <org.chromium.chrome.browser.widget.TintedImageButton
31 android:id="@+id/button_three"
32 android:layout_width="70dp"
33 android:layout_height="match_parent"
34 android:paddingStart="11dp"
35 android:paddingEnd="11dp"
36 android:background="?attr/listChoiceBackgroundIndicator"
37 android:scaleType="center" />
38
39 <org.chromium.chrome.browser.widget.TintedImageButton
40 android:id="@+id/button_four"
41 android:layout_width="59dp"
42 android:layout_height="match_parent"
43 android:paddingStart="11dp"
44 android:background="?attr/listChoiceBackgroundIndicator"
45 android:scaleType="center" />
46 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/two_button_menu_item.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698