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