summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChih-Chung Chang <chihchung@google.com>2011-09-27 12:36:41 +0800
committerChih-Chung Chang <chihchung@google.com>2011-09-27 12:40:18 +0800
commite779d9ccef436a66fae8c756a2c823286fa76ed3 (patch)
tree5cde8d1df624d9b1e10d7205a5fc7ac39df15d0d
parent92154677af88fd8c04074558209c26ec069c3653 (diff)
downloadandroid_packages_apps_Snap-e779d9ccef436a66fae8c756a2c823286fa76ed3.tar.gz
android_packages_apps_Snap-e779d9ccef436a66fae8c756a2c823286fa76ed3.tar.bz2
android_packages_apps_Snap-e779d9ccef436a66fae8c756a2c823286fa76ed3.zip
Fix 5369640: Only accept content://media URI for photo editor.
Change-Id: Ie68e9cfb8ef8d181ac7e23abd4b0caa6ded20938
-rw-r--r--AndroidManifest.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index cda1d7037..ab12d9b27 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -199,6 +199,8 @@
android:hardwareAccelerated="true">
<intent-filter>
<action android:name="android.intent.action.EDIT" />
+ <data android:scheme="content" />
+ <data android:host="media" />
<data android:mimeType="image/*" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>