Chromium Code Reviews| Index: chrome/android/java/AndroidManifest.xml |
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
| index 59da207c380fc442daa56b130b79798f9253e337..f09e7e0da51a66f322fec532653c2c015d00bfde 100644 |
| --- a/chrome/android/java/AndroidManifest.xml |
| +++ b/chrome/android/java/AndroidManifest.xml |
| @@ -616,6 +616,23 @@ by a child template that "extends" this file. |
| </intent-filter> |
| </activity> |
| + <!-- This activity is to expose the PhysicalWeb Share option via the generic Android share action. --> |
|
cco3
2017/01/31 19:42:55
I think it'd be preferable to put this with the ot
iankc
2017/01/31 22:51:30
Done.
|
| + <activity |
| + android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebShareActivity" |
| + android:icon="@drawable/physical_web_notification_large" |
| + android:label="@string/physical_web_share_activity_title" |
| + android:enabled="false" |
| + android:excludeFromRecents="true" |
| + android:noHistory="true" |
| + android:theme="@android:style/Theme.NoDisplay" |
| + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize" > |
| + <intent-filter> |
|
cco3
2017/01/31 19:42:55
Is any of this intent filter needed anymore?
iankc
2017/01/31 22:51:30
Done.
|
| + <action android:name="android.intent.action.SEND" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <data android:mimeType="text/plain" /> |
| + </intent-filter> |
| + </activity> |
| + |
| <!-- Activity for dispatching intents to Instant Apps. --> |
| <activity |
| android:name="org.chromium.chrome.browser.instantapps.AuthenticatedProxyActivity" |