Chromium Code Reviews| 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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 474 running. | 474 running. |
| 475 --> | 475 --> |
| 476 <activity android:name="org.chromium.chrome.browser.webapps.WebappLaunch erActivity" | 476 <activity android:name="org.chromium.chrome.browser.webapps.WebappLaunch erActivity" |
| 477 android:theme="@android:style/Theme.NoDisplay" | 477 android:theme="@android:style/Theme.NoDisplay" |
| 478 android:taskAffinity="" | 478 android:taskAffinity="" |
| 479 android:excludeFromRecents="true"> | 479 android:excludeFromRecents="true"> |
| 480 <intent-filter> | 480 <intent-filter> |
| 481 <action android:name="com.google.android.apps.chrome.webapps.Web appManager.ACTION_START_WEBAPP" /> | 481 <action android:name="com.google.android.apps.chrome.webapps.Web appManager.ACTION_START_WEBAPP" /> |
| 482 <category android:name="android.intent.category.DEFAULT" /> | 482 <category android:name="android.intent.category.DEFAULT" /> |
| 483 </intent-filter> | 483 </intent-filter> |
| 484 <intent-filter> | |
| 485 <action android:name="org.chromium.webapk.ACTION_START_WEBAPK" / > | |
|
Yaron
2017/06/27 14:38:24
wdyt about omitting "chromium" this time? Or I tak
Xi Han
2017/06/27 15:05:49
I don't have a strong preference between "org.chro
Yaron
2017/06/27 15:19:41
In the doc (#5), we selected org.webapk.ACTION_STA
Xi Han
2017/06/27 17:37:17
I am fine with "org.webapk.ACTION_START_WEBAPK" to
| |
| 486 <category android:name="android.intent.category.DEFAULT" /> | |
| 487 </intent-filter> | |
| 484 </activity> | 488 </activity> |
| 485 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appManager" | 489 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appManager" |
| 486 android:targetActivity="org.chromium.chrome.browser.webapps.WebappLa uncherActivity"> | 490 android:targetActivity="org.chromium.chrome.browser.webapps.WebappLa uncherActivity"> |
| 487 </activity-alias> | 491 </activity-alias> |
| 488 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty" | 492 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty" |
| 489 android:theme="@style/WebappTheme" | 493 android:theme="@style/WebappTheme" |
| 490 android:label="@string/webapp_activity_title" | 494 android:label="@string/webapp_activity_title" |
| 491 android:launchMode="singleTop" | 495 android:launchMode="singleTop" |
| 492 android:documentLaunchMode="intoExisting" | 496 android:documentLaunchMode="intoExisting" |
| 493 android:persistableMode="persistNever" | 497 android:persistableMode="persistNever" |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1005 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 1009 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 1006 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 1010 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
| 1007 The downstream manifest replaces this block, and hence replaces the list of media route | 1011 The downstream manifest replaces this block, and hence replaces the list of media route |
| 1008 controllers with its own list. --> | 1012 controllers with its own list. --> |
| 1009 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 1013 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 1010 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 1014 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 1011 | 1015 |
| 1012 {% endblock %} | 1016 {% endblock %} |
| 1013 </application> | 1017 </application> |
| 1014 </manifest> | 1018 </manifest> |
| OLD | NEW |