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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 <!-- ChromeTabbedActivity related --> | 339 <!-- ChromeTabbedActivity related --> |
340 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity
" | 340 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity
" |
341 android:theme="@style/TabbedModeTheme" | 341 android:theme="@style/TabbedModeTheme" |
342 android:exported="false" | 342 android:exported="false" |
343 android:windowSoftInputMode="adjustResize" | 343 android:windowSoftInputMode="adjustResize" |
344 android:launchMode="singleTask" | 344 android:launchMode="singleTask" |
345 android:configChanges="orientation|keyboardHidden|keyboard|screenSi
ze|mcc|mnc|screenLayout|smallestScreenSize" | 345 android:configChanges="orientation|keyboardHidden|keyboard|screenSi
ze|mcc|mnc|screenLayout|smallestScreenSize" |
346 android:hardwareAccelerated="false"> | 346 android:hardwareAccelerated="false"> |
347 </activity> | 347 </activity> |
348 {% if enable_vr_shell == "true" %} | 348 {% if enable_vr_shell == "true" %} |
349 <activity android:name="org.chromium.chrome.browser.VrActivity" | 349 <activity-alias android:name="org.chromium.chrome.browser.VrActivity" |
350 android:theme="@style/MainTheme" | 350 android:theme="@style/TabbedModeTheme" |
351 android:windowSoftInputMode="stateAlwaysHidden" | 351 android:windowSoftInputMode="stateAlwaysHidden" |
352 android:launchMode="singleTask" | 352 android:launchMode="singleTask" |
| 353 android:targetActivity="org.chromium.chrome.browser.ChromeTabbedAct
ivity" |
353 android:screenOrientation="landscape" | 354 android:screenOrientation="landscape" |
354 android:hardwareAccelerated="false" | 355 android:hardwareAccelerated="false" |
355 android:exported="true"> | 356 android:exported="true"> |
356 <intent-filter> | 357 <intent-filter> |
357 <action android:name="android.intent.action.MAIN" /> | 358 <action android:name="android.intent.action.MAIN" /> |
358 <category android:name="android.intent.category.LAUNCHER" /> | 359 <category android:name="android.intent.category.LAUNCHER" /> |
359 <!-- Show icon in Daydream app launcher. --> | 360 <!-- Show icon in Daydream app launcher. --> |
360 <category android:name="com.google.intent.category.DAYDREAM" /> | 361 <category android:name="com.google.intent.category.DAYDREAM" /> |
361 </intent-filter> | 362 </intent-filter> |
362 </activity> | 363 </activity-alias> |
363 {% endif %} | 364 {% endif %} |
| 365 |
364 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity
2" | 366 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity
2" |
365 android:theme="@style/TabbedModeTheme" | 367 android:theme="@style/TabbedModeTheme" |
366 android:exported="false" | 368 android:exported="false" |
367 android:windowSoftInputMode="adjustResize" | 369 android:windowSoftInputMode="adjustResize" |
368 android:taskAffinity="{{ manifest_package }}.ChromeTabbedActivity2" | 370 android:taskAffinity="{{ manifest_package }}.ChromeTabbedActivity2" |
369 android:launchMode="singleTask" | 371 android:launchMode="singleTask" |
370 android:configChanges="orientation|keyboardHidden|keyboard|screenSi
ze|mcc|mnc|screenLayout|smallestScreenSize" | 372 android:configChanges="orientation|keyboardHidden|keyboard|screenSi
ze|mcc|mnc|screenLayout|smallestScreenSize" |
371 android:hardwareAccelerated="false"> | 373 android:hardwareAccelerated="false"> |
372 </activity> | 374 </activity> |
373 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns
tanceChromeTabbedActivity" | 375 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns
tanceChromeTabbedActivity" |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 928 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
927 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 929 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
928 The downstream manifest replaces this block, and hence replaces the
list of media route | 930 The downstream manifest replaces this block, and hence replaces the
list of media route |
929 controllers with its own list. --> | 931 controllers with its own list. --> |
930 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 932 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
931 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 933 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
932 | 934 |
933 {% endblock %} | 935 {% endblock %} |
934 </application> | 936 </application> |
935 </manifest> | 937 </manifest> |
OLD | NEW |