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

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

Issue 2758313002: Implement the new Photo picker, part two. (Closed)
Patch Set: Polish 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/drawable/file_picker_scrim.xml
diff --git a/chrome/android/java/res/drawable/file_picker_scrim.xml b/chrome/android/java/res/drawable/file_picker_scrim.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e7a9dc8fa572e9e30899be1f468dd0ccede8fafd
--- /dev/null
+++ b/chrome/android/java/res/drawable/file_picker_scrim.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
Theresa 2017/03/21 15:36:59 This needs a copyright comment.
Finnur 2017/03/27 16:50:41 Done.
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <gradient
+ android:startColor="#42000000"
Theresa 2017/03/21 15:36:59 Please define this in colors.xml. We have a TON of
Finnur 2017/03/27 16:50:41 Done.
+ android:endColor="#00000000"
Theresa 2017/03/21 15:36:59 nit: @android:color/black
Finnur 2017/03/27 16:50:41 Done.
+ android:type="radial"
+ android:gradientRadius="64dp"
+ android:centerY="0%"
+ android:centerX="0%" />
+</shape>

Powered by Google App Engine
This is Rietveld 408576698