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

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2762873003: Fix: long-tapping a WebAPK in recents shows Chrome.
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc tivity{{ i }}" 557 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc tivity{{ i }}"
558 android:icon="@mipmap/app_shortcut_icon" 558 android:icon="@mipmap/app_shortcut_icon"
559 android:label="@string/webapp_activity_title"> 559 android:label="@string/webapp_activity_title">
560 </activity-alias> 560 </activity-alias>
561 {% endfor %} 561 {% endfor %}
562 <!-- Activities for WebAPKs. --> 562 <!-- Activities for WebAPKs. -->
563 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi ty" 563 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi ty"
564 android:theme="@style/WebappTheme" 564 android:theme="@style/WebappTheme"
565 android:label="@string/webapp_activity_title" 565 android:label="@string/webapp_activity_title"
566 android:launchMode="singleTop" 566 android:launchMode="singleTop"
567 android:documentLaunchMode="intoExisting"
gone 2017/03/22 22:20:07 Removing this flag means you can end up with multi
568 android:windowSoftInputMode="adjustResize" 567 android:windowSoftInputMode="adjustResize"
569 android:persistableMode="persistNever" 568 android:persistableMode="persistNever"
570 android:hardwareAccelerated="false" 569 android:hardwareAccelerated="false"
571 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 570 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
572 {{ self.supports_video_persistence() }} > 571 {{ self.supports_video_persistence() }} >
573 </activity> 572 </activity>
574 {% for i in range(10) %} 573 {% for i in range(10) %}
575 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi ty{{ i }}" 574 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi ty{{ i }}"
576 android:theme="@style/WebappTheme" 575 android:theme="@style/WebappTheme"
577 android:icon="@mipmap/app_shortcut_icon" 576 android:icon="@mipmap/app_shortcut_icon"
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 966 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
968 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 967 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
969 The downstream manifest replaces this block, and hence replaces the list of media route 968 The downstream manifest replaces this block, and hence replaces the list of media route
970 controllers with its own list. --> 969 controllers with its own list. -->
971 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 970 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
972 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 971 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
973 972
974 {% endblock %} 973 {% endblock %}
975 </application> 974 </application>
976 </manifest> 975 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698