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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 See the VRChromeTabbedActivity alias below for an explanation of t
his dummy intent | 371 See the VRChromeTabbedActivity alias below for an explanation of t
his dummy intent |
372 filter. We need to add these filters here as well, or non-presenti
ng webVR pages will | 372 filter. We need to add these filters here as well, or non-presenti
ng webVR pages will |
373 trigger a daydream incompatible app message. | 373 trigger a daydream incompatible app message. |
374 --> | 374 --> |
375 <intent-filter> | 375 <intent-filter> |
376 <action android:name="org.chromium.chrome.browser.dummy.action"
/> | 376 <action android:name="org.chromium.chrome.browser.dummy.action"
/> |
377 <category android:name="com.google.intent.category.DAYDREAM" /> | 377 <category android:name="com.google.intent.category.DAYDREAM" /> |
378 <category android:name="com.google.intent.category.CARDBOARD" /> | 378 <category android:name="com.google.intent.category.CARDBOARD" /> |
379 </intent-filter> | 379 </intent-filter> |
380 </activity> | 380 </activity> |
| 381 |
| 382 <activity android:name="org.chromium.chrome.browser.media.FullscreenMedi
aActivity" |
| 383 android:theme="@style/TabbedModeTheme" |
| 384 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 385 android:exported="false" |
| 386 {{ self.supports_video_persistence() }} > |
| 387 <!-- TODO(peconn): Add a label. --> |
| 388 <!-- TODO(peconn): Check the configChanges. --> |
| 389 </activity> |
381 | 390 |
382 {% if enable_vr == "true" %} | 391 {% if enable_vr == "true" %} |
383 <!-- | 392 <!-- |
384 TODO(mthiesse): Temporarily skip ChromeLauncherActivity when returni
ng from Daydream | 393 TODO(mthiesse): Temporarily skip ChromeLauncherActivity when returni
ng from Daydream |
385 DON flow to avoid polluting metrics. | 394 DON flow to avoid polluting metrics. |
386 --> | 395 --> |
387 <activity-alias android:name="org.chromium.chrome.browser.VRChromeTabbed
Activity" | 396 <activity-alias android:name="org.chromium.chrome.browser.VRChromeTabbed
Activity" |
388 android:targetActivity="org.chromium.chrome.browser.ChromeTabbedActi
vity" | 397 android:targetActivity="org.chromium.chrome.browser.ChromeTabbedActi
vity" |
389 android:enableVrMode="@string/gvr_vr_mode_component"> | 398 android:enableVrMode="@string/gvr_vr_mode_component"> |
390 <!-- | 399 <!-- |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 986 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
978 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 987 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
979 The downstream manifest replaces this block, and hence replaces the
list of media route | 988 The downstream manifest replaces this block, and hence replaces the
list of media route |
980 controllers with its own list. --> | 989 controllers with its own list. --> |
981 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 990 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
982 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 991 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
983 | 992 |
984 {% endblock %} | 993 {% endblock %} |
985 </application> | 994 </application> |
986 </manifest> | 995 </manifest> |
OLD | NEW |