| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 android:theme="@style/MainTheme" | 255 android:theme="@style/MainTheme" |
| 256 android:autoRemoveFromRecents="true"> | 256 android:autoRemoveFromRecents="true"> |
| 257 </activity> | 257 </activity> |
| 258 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct
ivity" | 258 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct
ivity" |
| 259 android:theme="@style/DialogWhenLarge" | 259 android:theme="@style/DialogWhenLarge" |
| 260 android:label="@string/fre_label" | 260 android:label="@string/fre_label" |
| 261 android:launchMode="singleTop" | 261 android:launchMode="singleTop" |
| 262 android:windowSoftInputMode="stateHidden|adjustPan" | 262 android:windowSoftInputMode="stateHidden|adjustPan" |
| 263 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc"> | 263 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc"> |
| 264 </activity> | 264 </activity> |
| 265 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin
Activity" |
| 266 android:theme="@style/MainTheme"> |
| 267 </activity> |
| 265 <activity android:name="org.chromium.chrome.browser.preferences.Preferen
ces" | 268 <activity android:name="org.chromium.chrome.browser.preferences.Preferen
ces" |
| 266 android:theme="@style/PreferencesTheme" | 269 android:theme="@style/PreferencesTheme" |
| 267 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc" | 270 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc" |
| 268 android:label="@string/preferences" | 271 android:label="@string/preferences" |
| 269 android:exported="false"> | 272 android:exported="false"> |
| 270 </activity> | 273 </activity> |
| 271 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi
vity" | 274 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi
vity" |
| 272 android:theme="@style/ThemeWithActionBar" | 275 android:theme="@style/ThemeWithActionBar" |
| 273 android:hardwareAccelerated="false" | 276 android:hardwareAccelerated="false" |
| 274 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc"> | 277 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc"> |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 727 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 725 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 728 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 726 The downstream manifest replaces this block, and hence replaces the
list of media route | 729 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 727 controllers with its own list. --> | 730 controllers with its own list. --> |
| 728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 731 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 732 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 730 | 733 |
| 731 {% endblock %} | 734 {% endblock %} |
| 732 </application> | 735 </application> |
| 733 </manifest> | 736 </manifest> |
| OLD | NEW |