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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 </activity> | 428 </activity> |
429 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkFo
lderSelectActivity" | 429 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkFo
lderSelectActivity" |
430 android:theme="@style/DrawerDialogWhite" | 430 android:theme="@style/DrawerDialogWhite" |
431 android:windowSoftInputMode="stateAlwaysHidden" | 431 android:windowSoftInputMode="stateAlwaysHidden" |
432 android:label="@string/bookmark_choose_folder" | 432 android:label="@string/bookmark_choose_folder" |
433 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 433 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
434 </activity> | 434 </activity> |
435 | 435 |
436 <!-- Activities for downloads. --> | 436 <!-- Activities for downloads. --> |
437 <activity android:name="org.chromium.chrome.browser.download.DownloadAct
ivity" | 437 <activity android:name="org.chromium.chrome.browser.download.DownloadAct
ivity" |
438 android:theme="@style/DrawerDialog" | 438 android:theme="@style/DownloadActivityTheme" |
439 android:windowSoftInputMode="stateAlwaysHidden" | 439 android:windowSoftInputMode="stateAlwaysHidden" |
440 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> | 440 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
441 </activity> | 441 </activity> |
442 | 442 |
443 <!-- | 443 <!-- |
444 Activities for webapps. | 444 Activities for webapps. |
445 TODO(dfalcantara): Remove the aliases for the WebappActivities once
we're pretty sure | 445 TODO(dfalcantara): Remove the aliases for the WebappActivities once
we're pretty sure |
446 that users don't have any instances of the origin
al Activity still | 446 that users don't have any instances of the origin
al Activity still |
447 running. | 447 running. |
448 --> | 448 --> |
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
910 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 910 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
911 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 911 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
912 The downstream manifest replaces this block, and hence replaces the
list of media route | 912 The downstream manifest replaces this block, and hence replaces the
list of media route |
913 controllers with its own list. --> | 913 controllers with its own list. --> |
914 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 914 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
915 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 915 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
916 | 916 |
917 {% endblock %} | 917 {% endblock %} |
918 </application> | 918 </application> |
919 </manifest> | 919 </manifest> |
OLD | NEW |