| 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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 </activity> | 434 </activity> |
| 435 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin
Activity" | 435 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin
Activity" |
| 436 android:theme="@style/DialogWhenLarge" | 436 android:theme="@style/DialogWhenLarge" |
| 437 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 437 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
| 438 </activity> | 438 </activity> |
| 439 <activity android:name="org.chromium.chrome.browser.preferences.Preferen
ces" | 439 <activity android:name="org.chromium.chrome.browser.preferences.Preferen
ces" |
| 440 android:theme="@style/PreferencesTheme" | 440 android:theme="@style/PreferencesTheme" |
| 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 <intent-filter> |
| 445 <action android:name="android.intent.action.MANAGE_NETWORK_USAGE
" /> |
| 446 <category android:name="android.intent.category.DEFAULT" /> |
| 447 </intent-filter> |
| 444 </activity> | 448 </activity> |
| 445 <activity android:name="org.chromium.chrome.browser.preferences.website.
ManageSpaceActivity" | 449 <activity android:name="org.chromium.chrome.browser.preferences.website.
ManageSpaceActivity" |
| 446 android:theme="@style/PreferencesTheme" | 450 android:theme="@style/PreferencesTheme" |
| 447 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 451 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 448 android:label="@string/storage_management_activity_label" | 452 android:label="@string/storage_management_activity_label" |
| 449 android:exported="false"> | 453 android:exported="false"> |
| 450 </activity> | 454 </activity> |
| 451 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi
vity" | 455 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi
vity" |
| 452 android:theme="@style/ThemeWithActionBar" | 456 android:theme="@style/ThemeWithActionBar" |
| 453 android:hardwareAccelerated="false" | 457 android:hardwareAccelerated="false" |
| (...skipping 509 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. | 967 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. | 968 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 | 969 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 966 controllers with its own list. --> | 970 controllers with its own list. --> |
| 967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 971 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 972 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 969 | 973 |
| 970 {% endblock %} | 974 {% endblock %} |
| 971 </application> | 975 </application> |
| 972 </manifest> | 976 </manifest> |
| OLD | NEW |