Index: chrome/android/java/AndroidManifest.xml |
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
index 7c67865ce4e2fbda87d2045d6b9e22a2b686fcc3..6917072b71bc569efdb3d3cb2756e1b02b9fd9d6 100644 |
--- a/chrome/android/java/AndroidManifest.xml |
+++ b/chrome/android/java/AndroidManifest.xml |
@@ -653,6 +653,16 @@ 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. --> |
+ <activity |
+ android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebShareEntryActivity" |
+ android:label="@string/physical_web_share_entry_title" |
+ android:excludeFromRecents="true" |
+ android:noHistory="true" |
+ android:theme="@style/AlertDialogTheme" |
Ted C
2017/03/21 16:05:12
If you use @style/Theme.AppCompat.Dialog, do you n
iankc
2017/03/21 18:43:25
Done.
|
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize" > |
+ </activity> |
+ |
<!-- Service for Broadcasting a Physical Web URL --> |
<service |
android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBroadcastService" |