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

Side by Side Diff: chrome/android/java/res/values/attrs.xml

Issue 1716683002: [Custom Tabs] Allow clients to display RemoteViews on the bottom bar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make findbug happy Created 4 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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <resources> 6 <resources>
7 <declare-styleable name="TintedImage"> 7 <declare-styleable name="TintedImage">
8 <attr name="tint" format="reference|color" /> 8 <attr name="tint" format="reference|color" />
9 </declare-styleable> 9 </declare-styleable>
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 <attr name="alertMessage" format="string" /> 42 <attr name="alertMessage" format="string" />
43 </declare-styleable> 43 </declare-styleable>
44 44
45 <declare-styleable name="PaddedFrameLayout"> 45 <declare-styleable name="PaddedFrameLayout">
46 <attr name="maxChildWidth" format="dimension" /> 46 <attr name="maxChildWidth" format="dimension" />
47 <attr name="maxChildHeight" format="dimension" /> 47 <attr name="maxChildHeight" format="dimension" />
48 </declare-styleable> 48 </declare-styleable>
49 49
50 <declare-styleable name="BoundedView"> 50 <declare-styleable name="BoundedView">
51 <attr name="maxWidth" format="dimension" /> 51 <attr name="maxWidth" format="dimension" />
52 <attr name="maxHeight" format="dimension" />
52 </declare-styleable> 53 </declare-styleable>
53 54
54 <declare-styleable name="ClipDrawableProgressBar"> 55 <declare-styleable name="ClipDrawableProgressBar">
55 <attr name="progressBarColor" format="reference|color" /> 56 <attr name="progressBarColor" format="reference|color" />
56 <attr name="backgroundColor" format="reference|color" /> 57 <attr name="backgroundColor" format="reference|color" />
57 </declare-styleable> 58 </declare-styleable>
58 59
59 </resources> 60 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698