Chromium Code Reviews| Index: chrome/android/java/AndroidManifest.xml |
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
| index 9d895643ed11db3f783592617beecdd4a28086b2..76c450c00429a93bf946fa1d773dacef834d672f 100644 |
| --- a/chrome/android/java/AndroidManifest.xml |
| +++ b/chrome/android/java/AndroidManifest.xml |
| @@ -653,6 +653,17 @@ 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:enabled="true" |
|
cco3
2017/03/16 22:54:32
This line isn't needed.
iankc
2017/03/17 00:08:44
Done.
|
| + android:excludeFromRecents="true" |
| + android:noHistory="true" |
| + android:theme="@style/AlertDialogTheme" |
| + 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" |