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

Unified Diff: sky/shell/apk/AndroidManifest.xml

Issue 946583003: Teach SkyShell how to listen for VIEW intents of sky: urls. (Closed) Base URL: git@github.com:abarth/mojo.git@master
Patch Set: Created 5 years, 10 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: sky/shell/apk/AndroidManifest.xml
diff --git a/sky/shell/apk/AndroidManifest.xml b/sky/shell/apk/AndroidManifest.xml
index 4b883998b0be36d6b81e12b0bfadd00b9c874aac..1d9b12d643e788bfcc07573512ac6d3e76f1da0f 100644
--- a/sky/shell/apk/AndroidManifest.xml
+++ b/sky/shell/apk/AndroidManifest.xml
@@ -19,6 +19,11 @@
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW"/>
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="sky" />
+ </intent-filter>
</activity>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698