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 android:launchMode = "singleInstance"> | |
newt (away)
2016/02/25 06:25:52
Is singleInstance really what we want? This means
PEConn
2016/02/25 14:19:51
Done.
| |
268 </activity> | |
265 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces" | 269 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces" |
266 android:theme="@style/PreferencesTheme" | 270 android:theme="@style/PreferencesTheme" |
267 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" | 271 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" |
268 android:label="@string/preferences" | 272 android:label="@string/preferences" |
269 android:exported="false"> | 273 android:exported="false"> |
270 </activity> | 274 </activity> |
271 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi vity" | 275 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi vity" |
272 android:theme="@style/ThemeWithActionBar" | 276 android:theme="@style/ThemeWithActionBar" |
273 android:hardwareAccelerated="false" | 277 android:hardwareAccelerated="false" |
274 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc"> | 278 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. | 728 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. | 729 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 | 730 The downstream manifest replaces this block, and hence replaces the list of media route |
727 controllers with its own list. --> | 731 controllers with its own list. --> |
728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 732 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 733 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
730 | 734 |
731 {% endblock %} | 735 {% endblock %} |
732 </application> | 736 </application> |
733 </manifest> | 737 </manifest> |
OLD | NEW |