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

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

Issue 1989283002: Upstream: Launch WebApkActivity from WebAPK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits. Created 4 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 <action android:name="com.google.android.apps.chrome.webapps.Web appManager.ACTION_START_WEBAPP" /> 375 <action android:name="com.google.android.apps.chrome.webapps.Web appManager.ACTION_START_WEBAPP" />
376 <category android:name="android.intent.category.DEFAULT" /> 376 <category android:name="android.intent.category.DEFAULT" />
377 </intent-filter> 377 </intent-filter>
378 </activity> 378 </activity>
379 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appManager" 379 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appManager"
380 android:targetActivity="org.chromium.chrome.browser.webapps.WebappLa uncherActivity"> 380 android:targetActivity="org.chromium.chrome.browser.webapps.WebappLa uncherActivity">
381 </activity-alias> 381 </activity-alias>
382 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty" 382 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty"
383 android:theme="@style/WebappTheme" 383 android:theme="@style/WebappTheme"
384 android:label="@string/webapp_activity_title" 384 android:label="@string/webapp_activity_title"
385 android:launchMode="singleTop"
gone 2016/05/21 00:07:28 Why would this change to singleTop? Won't that pr
Xi Han 2016/05/25 14:37:58 Your concern is right. We have that change because
385 android:documentLaunchMode="intoExisting" 386 android:documentLaunchMode="intoExisting"
386 android:windowSoftInputMode="adjustResize" 387 android:windowSoftInputMode="adjustResize"
387 android:persistableMode="persistNever" 388 android:persistableMode="persistNever"
388 android:hardwareAccelerated="false" 389 android:hardwareAccelerated="false"
389 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 390 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
390 </activity> 391 </activity>
391 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appActivity" 392 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appActivity"
392 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc tivity" 393 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc tivity"
393 android:label="@string/webapp_activity_title"> 394 android:label="@string/webapp_activity_title">
394 </activity-alias> 395 </activity-alias>
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 801 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
801 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 802 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
802 The downstream manifest replaces this block, and hence replaces the list of media route 803 The downstream manifest replaces this block, and hence replaces the list of media route
803 controllers with its own list. --> 804 controllers with its own list. -->
804 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 805 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
805 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 806 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
806 807
807 {% endblock %} 808 {% endblock %}
808 </application> 809 </application>
809 </manifest> 810 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698