Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2807663002: 📺 Move fullscreen web content to a new Activity. (Closed)
Patch Set: Considered other ChromeActivity subclasses. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 See the VRChromeTabbedActivity alias below for an explanation of t his dummy intent 369 See the VRChromeTabbedActivity alias below for an explanation of t his dummy intent
370 filter. We need to add these filters here as well, or non-presenti ng webVR pages will 370 filter. We need to add these filters here as well, or non-presenti ng webVR pages will
371 trigger a daydream incompatible app message. 371 trigger a daydream incompatible app message.
372 --> 372 -->
373 <intent-filter> 373 <intent-filter>
374 <action android:name="org.chromium.chrome.browser.dummy.action" /> 374 <action android:name="org.chromium.chrome.browser.dummy.action" />
375 <category android:name="com.google.intent.category.DAYDREAM" /> 375 <category android:name="com.google.intent.category.DAYDREAM" />
376 <category android:name="com.google.intent.category.CARDBOARD" /> 376 <category android:name="com.google.intent.category.CARDBOARD" />
377 </intent-filter> 377 </intent-filter>
378 </activity> 378 </activity>
379
380 <activity android:name="org.chromium.chrome.browser.FullscreenWebContent sActivity"
381 android:theme="@style/TabbedModeTheme"
382 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
383 android:exported="false"
384 {{ self.supports_video_persistence() }} >
385 <!-- TODO(peconn): Add a label. -->
386 <!-- TODO(peconn): Check the configChanges. -->
387 </activity>
379 388
380 {% if enable_vr == "true" %} 389 {% if enable_vr == "true" %}
381 <!-- 390 <!--
382 TODO(mthiesse): Temporarily skip ChromeLauncherActivity when returni ng from Daydream 391 TODO(mthiesse): Temporarily skip ChromeLauncherActivity when returni ng from Daydream
383 DON flow to avoid polluting metrics. 392 DON flow to avoid polluting metrics.
384 --> 393 -->
385 <activity-alias android:name="org.chromium.chrome.browser.VRChromeTabbed Activity" 394 <activity-alias android:name="org.chromium.chrome.browser.VRChromeTabbed Activity"
386 android:targetActivity="org.chromium.chrome.browser.ChromeTabbedActi vity" 395 android:targetActivity="org.chromium.chrome.browser.ChromeTabbedActi vity"
387 android:enableVrMode="@string/gvr_vr_mode_component"> 396 android:enableVrMode="@string/gvr_vr_mode_component">
388 <!-- 397 <!--
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 1016 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
1008 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 1017 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
1009 The downstream manifest replaces this block, and hence replaces the list of media route 1018 The downstream manifest replaces this block, and hence replaces the list of media route
1010 controllers with its own list. --> 1019 controllers with its own list. -->
1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 1020 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 1021 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
1013 1022
1014 {% endblock %} 1023 {% endblock %}
1015 </application> 1024 </application>
1016 </manifest> 1025 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698