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

Unified Diff: shell/android/apk/AndroidManifest.xml.jinja2

Issue 1280613003: Allow native_viewport to create new native windows on demand on Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « shell/BUILD.gn ('k') | shell/android/apk/src/org/chromium/mojo/shell/JavaApplicationRegistry.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/android/apk/AndroidManifest.xml.jinja2
diff --git a/shell/android/apk/AndroidManifest.xml.jinja2 b/shell/android/apk/AndroidManifest.xml.jinja2
index 11adbe6abbeda702a59eb47ea5ed38203957e69e..4b64ed206c8597fa112df983eb860515b099038b 100644
--- a/shell/android/apk/AndroidManifest.xml.jinja2
+++ b/shell/android/apk/AndroidManifest.xml.jinja2
@@ -27,10 +27,7 @@
<activity android:name="org.chromium.mojo.shell.MojoShellActivity"
android:launchMode="standard"
android:documentLaunchMode="none"
- android:theme="@android:style/Theme.Holo.Light.NoActionBar"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
- android:windowSoftInputMode="adjustPan"
- android:hardwareAccelerated="true">
+ android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<!-- A mojo://host/path url will load the app at the
https://host/path URL.
@@ -41,6 +38,12 @@
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
</activity>
+ <activity android:name="org.chromium.mojo.shell.ViewportActivity"
+ android:theme="@android:style/Theme.Holo.Light.NoActionBar"
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
+ android:windowSoftInputMode="adjustPan"
+ android:hardwareAccelerated="true">
+ </activity>
<activity android:name="org.chromium.mojo.shell.NfcReceiverActivity"
android:theme="@android:style/Theme.NoDisplay" >
<intent-filter>
« no previous file with comments | « shell/BUILD.gn ('k') | shell/android/apk/src/org/chromium/mojo/shell/JavaApplicationRegistry.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698