| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 441 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 442 android:label="@string/preferences" | 442 android:label="@string/preferences" |
| 443 android:exported="false"> | 443 android:exported="false"> |
| 444 </activity> | 444 </activity> |
| 445 <activity android:name="org.chromium.chrome.browser.preferences.website.
ManageSpaceActivity" | 445 <activity android:name="org.chromium.chrome.browser.preferences.website.
ManageSpaceActivity" |
| 446 android:theme="@style/PreferencesTheme" | 446 android:theme="@style/PreferencesTheme" |
| 447 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 447 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 448 android:label="@string/storage_management_activity_label" | 448 android:label="@string/storage_management_activity_label" |
| 449 android:exported="false"> | 449 android:exported="false"> |
| 450 </activity> | 450 </activity> |
| 451 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi
vity" | |
| 452 android:theme="@style/ThemeWithActionBar" | |
| 453 android:hardwareAccelerated="false" | |
| 454 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | |
| 455 </activity> | |
| 456 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAc
tivity" | 451 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAc
tivity" |
| 457 android:theme="@style/FullscreenWhiteActivityTheme" | 452 android:theme="@style/FullscreenWhiteActivityTheme" |
| 458 android:exported="false" | 453 android:exported="false" |
| 459 android:windowSoftInputMode="stateAlwaysHidden" | 454 android:windowSoftInputMode="stateAlwaysHidden" |
| 460 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 455 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
| 461 </activity> | 456 </activity> |
| 462 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd
dActivity" | 457 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd
dActivity" |
| 463 android:theme="@style/DialogWhenLarge" | 458 android:theme="@style/DialogWhenLarge" |
| 464 android:windowSoftInputMode="stateHidden" | 459 android:windowSoftInputMode="stateHidden" |
| 465 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 460 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 958 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 964 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 959 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 965 The downstream manifest replaces this block, and hence replaces the
list of media route | 960 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 966 controllers with its own list. --> | 961 controllers with its own list. --> |
| 967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 962 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 963 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 969 | 964 |
| 970 {% endblock %} | 965 {% endblock %} |
| 971 </application> | 966 </application> |
| 972 </manifest> | 967 </manifest> |
| OLD | NEW |