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

Unified Diff: blimp/client/app/android/AndroidManifest.xml.jinja2

Issue 1814693003: Added support to blimp to be usable as a default browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | blimp/client/app/android/blimp_compositor_manager_android.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/app/android/AndroidManifest.xml.jinja2
diff --git a/blimp/client/app/android/AndroidManifest.xml.jinja2 b/blimp/client/app/android/AndroidManifest.xml.jinja2
index adb5b2f7b7531d4ce91c9cbb57fd0930a1e2c04e..a8dc01fdcccd2a94d28e5f0d97e27a47ed63c860 100644
--- a/blimp/client/app/android/AndroidManifest.xml.jinja2
+++ b/blimp/client/app/android/AndroidManifest.xml.jinja2
@@ -22,8 +22,64 @@
android:windowSoftInputMode="adjustResize"
android:hardwareAccelerated="true">
<intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ <category android:name="android.intent.category.BROWSABLE" />
+ <category android:name="android.intent.category.APP_BROWSER" />
+ <category android:name="android.intent.category.NOTIFICATION_PREFERENCES" />
Khushal 2016/03/25 18:59:30 Since we don't post any notifications right now, i
shaktisahu 2016/03/29 19:04:12 Done.
+ </intent-filter>
+ <!-- Matches the common case of intents with no MIME type.
+ Make sure to keep in sync with the next filter. -->
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+ <data android:scheme="http" />
Khushal 2016/03/25 18:59:30 We are not handling any of these intents in the ac
shaktisahu 2016/03/29 19:04:12 Done.
+ <data android:scheme="https" />
+ <data android:scheme="about" />
+ <data android:scheme="javascript" />
+ </intent-filter>
+ <!-- Same filter as above but with MIME types. Intents that
+ do not specify a MIME type won't match. -->
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+ <data android:scheme="http" />
+ <data android:scheme="https" />
+ <data android:scheme="about" />
+ <data android:scheme="content" />
+ <data android:scheme="javascript" />
+ <data android:mimeType="text/html"/>
+ <data android:mimeType="text/plain"/>
+ <data android:mimeType="application/xhtml+xml"/>
+ </intent-filter>
+ <!-- MHTML support, used for snapshots -->
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="file" android:mimeType="multipart/related"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.MEDIA_SEARCH" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.speech.action.VOICE_SEARCH_RESULTS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.nfc.action.NDEF_DISCOVERED" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="http" />
+ <data android:scheme="https" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.SEARCH" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.sec.android.airview.HOVER" />
</intent-filter>
</activity>
« no previous file with comments | « no previous file | blimp/client/app/android/blimp_compositor_manager_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698