Index: chrome/android/java/AndroidManifest.xml |
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
index bfb857eb45df1ec267548cc400d0d96c42750f1c..a99d1ff3d585e51ac22edc80165a09c08a71033e 100644 |
--- a/chrome/android/java/AndroidManifest.xml |
+++ b/chrome/android/java/AndroidManifest.xml |
@@ -604,6 +604,21 @@ by a child template that "extends" this file. |
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize" > |
</activity> |
+ <!-- Activities for Browser Actions --> |
+ {% if channel in ['default'] %} |
+ <activity android:name="org.chromium.chrome.browser.browseractions.BrowserActionActivity" |
+ android:theme="@style/FullscreenTransparentActivityTheme" |
+ android:exported="true" |
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize"> |
+ <intent-filter> |
+ <action android:name="android.support.customtabs.browseractions.browser_action_open" /> |
+ <category android:name="android.intent.category.DEFAULT" /> |
+ <data android:scheme="http" /> |
+ <data android:scheme="https" /> |
+ </intent-filter> |
+ </activity> |
+ {% endif %} |
+ |
<!-- Service for Broadcasting a Physical Web URL --> |
<service |
android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBroadcastService" |