Chromium Code Reviews| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 247 <meta-data android:name="android.app.shortcuts" | 247 <meta-data android:name="android.app.shortcuts" |
| 248 android:resource="@xml/launchershortcuts" /> | 248 android:resource="@xml/launchershortcuts" /> |
| 249 {% endif %} | 249 {% endif %} |
| 250 | 250 |
| 251 </activity-alias> | 251 </activity-alias> |
| 252 | 252 |
| 253 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi vity" | 253 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi vity" |
| 254 android:theme="@android:style/Theme.NoDisplay" | 254 android:theme="@android:style/Theme.NoDisplay" |
| 255 android:taskAffinity="" | 255 android:taskAffinity="" |
| 256 android:excludeFromRecents="true" | 256 android:excludeFromRecents="true" |
| 257 android:exported="false" /> | 257 android:exported="true" /> |
|
Theresa
2016/09/08 23:14:37
This activity should not be exported because it al
Theresa
2016/09/08 23:17:04
Looks accidental (possibly testing things for me)?
| |
| 258 | 258 |
| 259 <!-- Upgrade related --> | 259 <!-- Upgrade related --> |
| 260 <activity android:name="org.chromium.chrome.browser.upgrade.UpgradeActiv ity" | 260 <activity android:name="org.chromium.chrome.browser.upgrade.UpgradeActiv ity" |
| 261 android:excludeFromRecents="true" | 261 android:excludeFromRecents="true" |
| 262 android:theme="@style/MainTheme" | 262 android:theme="@style/MainTheme" |
| 263 android:windowSoftInputMode="adjustResize" | 263 android:windowSoftInputMode="adjustResize" |
| 264 android:taskAffinity="" | 264 android:taskAffinity="" |
| 265 android:launchMode="singleInstance" | 265 android:launchMode="singleInstance" |
| 266 android:persistableMode="persistNever" | 266 android:persistableMode="persistNever" |
| 267 android:autoRemoveFromRecents="false" | 267 android:autoRemoveFromRecents="false" |
| (...skipping 642 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 |