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 |
416 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" | 422 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" |
417 android:theme="@style/MainTheme" | 423 android:theme="@style/MainTheme" |
418 android:autoRemoveFromRecents="true"> | 424 android:autoRemoveFromRecents="true"> |
419 </activity> | 425 </activity> |
420 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight
FirstRunActivity" | 426 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight
FirstRunActivity" |
421 android:theme="@style/SimpleDialog" | 427 android:theme="@style/SimpleDialog" |
422 android:launchMode="singleTop" | 428 android:launchMode="singleTop" |
423 android:autoRemoveFromRecents="true" | 429 android:autoRemoveFromRecents="true" |
424 android:windowSoftInputMode="stateHidden|adjustPan" | 430 android:windowSoftInputMode="stateHidden|adjustPan" |
425 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 431 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
(...skipping 537 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. | 969 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. | 970 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 | 971 The downstream manifest replaces this block, and hence replaces the
list of media route |
966 controllers with its own list. --> | 972 controllers with its own list. --> |
967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 973 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 974 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
969 | 975 |
970 {% endblock %} | 976 {% endblock %} |
971 </application> | 977 </application> |
972 </manifest> | 978 </manifest> |
OLD | NEW |