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

Side by Side Diff: blimp/client/app/android/java/res/drawable/dotted_line.xml

Issue 2542083004: Make //blimp/client/app a real embedder of //blimp/client/public (Closed)
Patch Set: Fix findbugs issue Created 4 years 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 <!-- 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 <item android:top="-2dp" android:right="-2dp" android:left="-2dp">
8 <shape>
9 <solid android:color="#FFFFFF" />
10 <stroke
11 android:dashGap="1dp"
12 android:dashWidth="2dp"
13 android:width="1dp"
14 android:color="@color/disabled_text_color" />
15 <padding
16 android:top="5dp"
17 android:left="5dp"
18 android:right="5dp"
19 android:bottom="2dp"/>
20 </shape>
21 </item>
22 </layer-list>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698