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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 android:hardwareAccelerated="false"> | 407 android:hardwareAccelerated="false"> |
408 </activity> | 408 </activity> |
409 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns
tanceChromeTabbedActivity" | 409 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns
tanceChromeTabbedActivity" |
410 android:theme="@style/TabbedModeTheme" | 410 android:theme="@style/TabbedModeTheme" |
411 android:exported="false" | 411 android:exported="false" |
412 android:windowSoftInputMode="adjustResize" | 412 android:windowSoftInputMode="adjustResize" |
413 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 413 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
414 android:hardwareAccelerated="false"> | 414 android:hardwareAccelerated="false"> |
415 </activity> | 415 </activity> |
416 | 416 |
417 <activity android:name="org.chromium.chrome.browser.suggestions.ContentS
uggestionsActivity" | |
418 android:theme="@style/FullscreenWhiteActivityTheme" | |
419 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | |
420 android:windowSoftInputMode="stateAlwaysHidden"> | |
421 </activity> | |
422 | |
423 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" | 417 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" |
424 android:theme="@style/MainTheme" | 418 android:theme="@style/MainTheme" |
425 android:autoRemoveFromRecents="true"> | 419 android:autoRemoveFromRecents="true"> |
426 </activity> | 420 </activity> |
427 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight
FirstRunActivity" | 421 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight
FirstRunActivity" |
428 android:theme="@style/SimpleDialog" | 422 android:theme="@style/SimpleDialog" |
429 android:launchMode="singleTop" | 423 android:launchMode="singleTop" |
430 android:autoRemoveFromRecents="true" | 424 android:autoRemoveFromRecents="true" |
431 android:windowSoftInputMode="stateHidden|adjustPan" | 425 android:windowSoftInputMode="stateHidden|adjustPan" |
432 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 426 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 948 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
955 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 949 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
956 The downstream manifest replaces this block, and hence replaces the
list of media route | 950 The downstream manifest replaces this block, and hence replaces the
list of media route |
957 controllers with its own list. --> | 951 controllers with its own list. --> |
958 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 952 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
959 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 953 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
960 | 954 |
961 {% endblock %} | 955 {% endblock %} |
962 </application> | 956 </application> |
963 </manifest> | 957 </manifest> |
OLD | NEW |