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

Unified Diff: chrome/android/shell/java/AndroidManifest.xml

Issue 489053003: Use content URI to upload photos taken by camera (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/shell/java/AndroidManifest.xml
diff --git a/chrome/android/shell/java/AndroidManifest.xml b/chrome/android/shell/java/AndroidManifest.xml
index ad27000310c2847b8b80b7ba9efd171bb233a328..b5dff54f5fd293a185520acbcc4d8911c2d56de4 100644
--- a/chrome/android/shell/java/AndroidManifest.xml
+++ b/chrome/android/shell/java/AndroidManifest.xml
@@ -217,6 +217,15 @@
android:authorities="org.chromium.chrome.shell"
android:exported="true" />
+ <!-- Provider for FileProvider. -->
+ <provider android:name="android.support.v4.content.FileProvider"
+ android:authorities="org.chromium.chrome.shell.FileProvider"
+ android:exported="false"
+ android:grantUriPermissions="true">
+ <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
Ted C 2014/08/21 00:54:51 based on this name alone, I assume this is needed
qinmin 2014/08/21 17:45:43 Yes, or otherwise chrome will not start.
+ android:resource="@xml/file_paths" />
Ted C 2014/08/21 00:54:51 +3 indent
qinmin 2014/08/21 17:45:43 Done.
+ </provider>
+
<!-- Sync adapter for browser sync. -->
<service android:exported="false"
android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAdapterService">

Powered by Google App Engine
This is Rietveld 408576698