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

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

Issue 2807663002: 📺 Move fullscreen web content to a new Activity. (Closed)
Patch Set: Got code into committable state. Created 3 years, 7 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 self.supports_video_persistence(). #} 350 self.supports_video_persistence(). #}
351 {% block supports_video_persistence %} 351 {% block supports_video_persistence %}
352 {% endblock %} 352 {% endblock %}
353 {% block chrome_activity_common %} 353 {% block chrome_activity_common %}
354 android:windowSoftInputMode="adjustResize" 354 android:windowSoftInputMode="adjustResize"
355 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize|uiMode" 355 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize|uiMode"
356 android:hardwareAccelerated="false" 356 android:hardwareAccelerated="false"
357 {% endblock %} 357 {% endblock %}
358 > 358 >
359 </activity> 359 </activity>
360 <activity android:name="org.chromium.chrome.browser.FullscreenWebContent sActivity"
Theresa 2017/04/26 18:32:11 nit: reorder so that ChromeTabbedActivity and Chro
PEConn 2017/04/27 08:53:11 Done.
361 android:theme="@style/TabbedModeTheme"
362 android:exported="false"
363 {{ self.chrome_activity_common() }}
364 {{ self.supports_video_persistence() }} >
365 <!-- TODO(peconn): Add a label. -->
366 <!-- TODO(peconn): Check Theme. -->
Theresa 2017/04/26 18:32:11 TabbedModeTheme uses a 9-patch with a toolbar as t
PEConn 2017/04/27 08:53:11 Done.
367 </activity>
360 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity 2" 368 <activity android:name="org.chromium.chrome.browser.ChromeTabbedActivity 2"
361 android:theme="@style/TabbedModeTheme" 369 android:theme="@style/TabbedModeTheme"
362 android:exported="false" 370 android:exported="false"
363 android:taskAffinity="{{ manifest_package }}.ChromeTabbedActivity2" 371 android:taskAffinity="{{ manifest_package }}.ChromeTabbedActivity2"
364 android:launchMode="singleTask" 372 android:launchMode="singleTask"
365 {{ self.chrome_activity_common() }}> 373 {{ self.chrome_activity_common() }}>
366 </activity> 374 </activity>
367 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns tanceChromeTabbedActivity" 375 <activity android:name="org.chromium.chrome.browser.multiwindow.MultiIns tanceChromeTabbedActivity"
368 android:theme="@style/TabbedModeTheme" 376 android:theme="@style/TabbedModeTheme"
369 android:exported="false" 377 android:exported="false"
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 963 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 964 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
957 The downstream manifest replaces this block, and hence replaces the list of media route 965 The downstream manifest replaces this block, and hence replaces the list of media route
958 controllers with its own list. --> 966 controllers with its own list. -->
959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
961 969
962 {% endblock %} 970 {% endblock %}
963 </application> 971 </application>
964 </manifest> 972 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698