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

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

Issue 2956993002: Introduce a new WebAPK launch action. (Closed)
Patch Set: File a bug. Created 3 years, 5 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
« no previous file with comments | « no previous file | chrome/android/webapk/shell_apk/src/org/chromium/webapk/shell_apk/MainActivity.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
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.webapk.ACTION_START_WEBAPK" />
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/webapk/shell_apk/src/org/chromium/webapk/shell_apk/MainActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698