Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2269293002: [Download Home] Various fixes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@DOWNLOADS_activity_tests
Patch Set: Fullscreen activity Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/res/drawable-hdpi/ic_get_app_white_24dp.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/drawable-hdpi/ic_get_app_white_24dp.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698