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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
415 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> | 415 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> |
416 </activity> | 416 </activity> |
417 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity" | 417 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity" |
418 android:theme="@style/DialogWhenLarge" | 418 android:theme="@style/DialogWhenLarge" |
419 android:launchMode="singleInstance" | 419 android:launchMode="singleInstance" |
420 android:excludeFromRecents="true" | 420 android:excludeFromRecents="true" |
421 android:autoRemoveFromRecents="true" | 421 android:autoRemoveFromRecents="true" |
422 android:windowSoftInputMode="stateHidden|adjustPan" | 422 android:windowSoftInputMode="stateHidden|adjustPan" |
423 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> | 423 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> |
424 </activity> | 424 </activity> |
425 <activity android:name="org.chromium.chrome.browser.vr_shell.VrFirstRunA ctivity" | |
426 android:exported="false" | |
427 android:theme="@android:style/Theme.Translucent.NoTitleBar" | |
mthiesse
2017/07/12 14:44:46
Use "@style/VrActivityTheme"
Also you should prob
ymalik
2017/07/12 15:33:03
Done.
| |
428 android:excludeFromRecents="true" | |
429 android:enableVrMode="@string/gvr_vr_mode_component"> | |
430 {{ self.supports_vr() }} | |
431 </activity> | |
425 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity" | 432 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity" |
426 android:theme="@style/DialogWhenLarge" | 433 android:theme="@style/DialogWhenLarge" |
427 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> | 434 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> |
428 </activity> | 435 </activity> |
429 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces" | 436 <activity android:name="org.chromium.chrome.browser.preferences.Preferen ces" |
430 android:theme="@style/PreferencesTheme" | 437 android:theme="@style/PreferencesTheme" |
431 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" | 438 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" |
432 android:label="@string/preferences" | 439 android:label="@string/preferences" |
433 android:exported="false"> | 440 android:exported="false"> |
434 </activity> | 441 </activity> |
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1039 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 1046 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
1040 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 1047 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
1041 The downstream manifest replaces this block, and hence replaces the list of media route | 1048 The downstream manifest replaces this block, and hence replaces the list of media route |
1042 controllers with its own list. --> | 1049 controllers with its own list. --> |
1043 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 1050 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
1044 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 1051 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
1045 | 1052 |
1046 {% endblock %} | 1053 {% endblock %} |
1047 </application> | 1054 </application> |
1048 </manifest> | 1055 </manifest> |
OLD | NEW |