Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > | |
| 7 | |
| 8 <item android:top="-2dp" android:right="-2dp" android:left="-2dp"> | |
|
David Trainor- moved to gerrit
2016/11/03 03:07:54
indent in?
shaktisahu
2016/11/03 18:10:04
Done.
| |
| 9 <shape> | |
| 10 <solid android:color="#FFFFFF" /> | |
| 11 <stroke | |
| 12 android:dashGap="1dp" | |
| 13 android:dashWidth="2dp" | |
| 14 android:width="1dp" | |
| 15 android:color="@color/disabled_text_color" /> | |
| 16 <padding | |
| 17 android:top="5dp" | |
| 18 android:left="5dp" | |
| 19 android:right="5dp" | |
| 20 android:bottom="2dp"/> | |
| 21 </shape> | |
| 22 </item> | |
| 23 | |
| 24 </layer-list> | |
| OLD | NEW |