Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: mobile/android/base/AndroidManifest.xml.in

Issue 4819695857303552: Issue 2561 - Installing extensions should not be allowed until official support lands (Closed)
Patch Set: Created May 22, 2015, 1:41 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mobile/android/chrome/content/browser.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mobile/android/base/AndroidManifest.xml.in
diff --git a/mobile/android/base/AndroidManifest.xml.in b/mobile/android/base/AndroidManifest.xml.in
index 93704d2e6df9507418ce508021f7a1ebb52b3825..3e5e6cdae1375a407da866d2f85d0082138f70ea 100644
--- a/mobile/android/base/AndroidManifest.xml.in
+++ b/mobile/android/base/AndroidManifest.xml.in
@@ -201,24 +201,26 @@
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
- <!-- For XPI installs from websites and the download manager. -->
- <intent-filter>
+ <!-- For XPI installs from websites and the download manager. -->
+ <!-- We disable XPI installation here because of https://issues.adblockplus.org/ticket/2561 -->
+ <!-- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:mimeType="application/x-xpinstall" />
- </intent-filter>
+ </intent-filter> -->
<!-- For XPI installs from file: URLs. -->
- <intent-filter>
+ <!-- We disable XPI installation here because of https://issues.adblockplus.org/ticket/2561 -->
+ <!-- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:host="" />
<data android:scheme="file" />
<data android:pathPattern=".*\\.xpi" />
- </intent-filter>
+ </intent-filter> -->
#ifdef MOZ_ANDROID_BEAM
<intent-filter>
« no previous file with comments | « no previous file | mobile/android/chrome/content/browser.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld