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

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

Issue 2751333006: Create the base Custom Context Menu Dialog. (Closed)
Patch Set: Updated tests and header 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 <item>
4 <shape android:shape="rectangle">
5 <solid android:color="#FFFFFF" />
6 <size android:height="10dp" android:width="10dp"/>
7 </shape>
8 </item>
9 <item android:top="0dp" android:left="10dp">
10 <shape android:shape="rectangle">
11 <solid android:color="#EEE"/>
12 <size android:height="10dp" android:width="10dp"/>
13 </shape>
14 </item>
15 <item android:top="10dp" android:left="0dp">
16 <shape android:shape="rectangle">
17 <solid android:color="#EEE"/>
18 <size android:height="10dp" android:width="10dp"/>
19 </shape>
20 </item>
21 <item android:top="10dp" android:left="10dp">
22 <shape android:shape="rectangle">
23 <solid android:color="#FFFFFF" />
24 <size android:height="10dp" android:width="10dp"/>
25 </shape>
26 </item>
27 </layer-list>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698