| OLD | NEW |
| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 <action android:name="com.google.android.apps.chrome.webapps.Web
appManager.ACTION_START_WEBAPP" /> | 375 <action android:name="com.google.android.apps.chrome.webapps.Web
appManager.ACTION_START_WEBAPP" /> |
| 376 <category android:name="android.intent.category.DEFAULT" /> | 376 <category android:name="android.intent.category.DEFAULT" /> |
| 377 </intent-filter> | 377 </intent-filter> |
| 378 </activity> | 378 </activity> |
| 379 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web
appManager" | 379 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web
appManager" |
| 380 android:targetActivity="org.chromium.chrome.browser.webapps.WebappLa
uncherActivity"> | 380 android:targetActivity="org.chromium.chrome.browser.webapps.WebappLa
uncherActivity"> |
| 381 </activity-alias> | 381 </activity-alias> |
| 382 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi
ty" | 382 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi
ty" |
| 383 android:theme="@style/WebappTheme" | 383 android:theme="@style/WebappTheme" |
| 384 android:label="@string/webapp_activity_title" | 384 android:label="@string/webapp_activity_title" |
| 385 android:launchMode="singleTop" |
| 385 android:documentLaunchMode="intoExisting" | 386 android:documentLaunchMode="intoExisting" |
| 386 android:windowSoftInputMode="adjustResize" | 387 android:windowSoftInputMode="adjustResize" |
| 387 android:persistableMode="persistNever" | 388 android:persistableMode="persistNever" |
| 388 android:hardwareAccelerated="false" | 389 android:hardwareAccelerated="false" |
| 389 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 390 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
| 390 </activity> | 391 </activity> |
| 391 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web
appActivity" | 392 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web
appActivity" |
| 392 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc
tivity" | 393 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc
tivity" |
| 393 android:label="@string/webapp_activity_title"> | 394 android:label="@string/webapp_activity_title"> |
| 394 </activity-alias> | 395 </activity-alias> |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 801 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 801 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 802 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 802 The downstream manifest replaces this block, and hence replaces the
list of media route | 803 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 803 controllers with its own list. --> | 804 controllers with its own list. --> |
| 804 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 805 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 805 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 806 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 806 | 807 |
| 807 {% endblock %} | 808 {% endblock %} |
| 808 </application> | 809 </application> |
| 809 </manifest> | 810 </manifest> |
| OLD | NEW |