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

Unified Diff: chrome/android/java/res/drawable/material_progressbar.xml

Issue 2464473002: [Download Home] Make the space display usable (Closed)
Patch Set: Added javadoc Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/drawable/material_progressbar.xml
diff --git a/chrome/android/java/res/drawable/material_progressbar.xml b/chrome/android/java/res/drawable/material_progressbar.xml
index 53a3e411051991f5f134b424cdf62cf1d1c01148..5f1bdb24209cfe4da82019d1c5ad1129855544bb 100644
--- a/chrome/android/java/res/drawable/material_progressbar.xml
+++ b/chrome/android/java/res/drawable/material_progressbar.xml
@@ -8,7 +8,7 @@
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
- <solid android:color="#dbdbdb" />
+ <solid android:color="@color/material_progressbar_bg" />
</shape>
</item>
@@ -19,4 +19,12 @@
</shape>
</clip>
</item>
+
+ <item android:id="@android:id/secondaryProgress">
+ <clip>
+ <shape>
+ <solid android:color="@color/google_grey_600" />
+ </shape>
+ </clip>
+ </item>
</layer-list>

Powered by Google App Engine
This is Rietveld 408576698