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

Side by Side Diff: chrome/android/java/res/drawable/checkerboard_background.xml

Issue 2777773002: Show the image header for the Context Menu (Closed)
Patch Set: Why be public when you can be private Created 3 years, 8 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/drawable/tabular_context_menu_image_border.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 2017 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 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
7 <item>
8 <shape android:shape="rectangle">
9 <solid android:color="@android:color/white" />
10 <size android:height="10dp" android:width="10dp"/>
11 </shape>
12 </item>
13 <item android:top="0dp" android:left="10dp">
14 <shape android:shape="rectangle">
15 <solid android:color="@color/google_grey_200"/>
16 <size android:height="10dp" android:width="10dp"/>
17 </shape>
18 </item>
19 <item android:top="10dp" android:left="0dp">
20 <shape android:shape="rectangle">
21 <solid android:color="@color/google_grey_200"/>
22 <size android:height="10dp" android:width="10dp"/>
23 </shape>
24 </item>
25 <item android:top="10dp" android:left="10dp">
26 <shape android:shape="rectangle">
27 <solid android:color="@android:color/white" />
28 <size android:height="10dp" android:width="10dp"/>
29 </shape>
30 </item>
31 </layer-list>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/drawable/tabular_context_menu_image_border.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698