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

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

Issue 1239923002: webapps: add splashscreen for installed webapps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@manifest-title
Patch Set: Created 5 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
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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 running. 316 running.
317 --> 317 -->
318 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appManager" 318 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appManager"
319 android:targetActivity="org.chromium.chrome.browser.document.ChromeL auncherActivity"> 319 android:targetActivity="org.chromium.chrome.browser.document.ChromeL auncherActivity">
320 <intent-filter> 320 <intent-filter>
321 <action android:name="com.google.android.apps.chrome.webapps.Web appManager.ACTION_START_WEBAPP" /> 321 <action android:name="com.google.android.apps.chrome.webapps.Web appManager.ACTION_START_WEBAPP" />
322 <category android:name="android.intent.category.DEFAULT" /> 322 <category android:name="android.intent.category.DEFAULT" />
323 </intent-filter> 323 </intent-filter>
324 </activity-alias> 324 </activity-alias>
325 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty" 325 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty"
326 android:theme="@style/MainTheme" 326 android:theme="@style/WebApp"
327 android:label="@string/webapp_activity_title" 327 android:label="@string/webapp_activity_title"
328 android:documentLaunchMode="intoExisting" 328 android:documentLaunchMode="intoExisting"
329 android:windowSoftInputMode="adjustResize" 329 android:windowSoftInputMode="adjustResize"
330 android:persistableMode="persistNever" 330 android:persistableMode="persistNever"
331 android:hardwareAccelerated="true" 331 android:hardwareAccelerated="true"
332 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc"> 332 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc">
333 </activity> 333 </activity>
334 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appActivity" 334 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appActivity"
335 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc tivity" 335 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc tivity"
336 android:label="@string/webapp_activity_title"> 336 android:label="@string/webapp_activity_title">
337 </activity-alias> 337 </activity-alias>
338 {% for i in range(10) %} 338 {% for i in range(10) %}
339 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty{{ i }}" 339 <activity android:name="org.chromium.chrome.browser.webapps.WebappActivi ty{{ i }}"
340 android:theme="@style/MainTheme" 340 android:theme="@style/WebApp"
341 android:icon="@mipmap/app_shortcut_icon" 341 android:icon="@mipmap/app_shortcut_icon"
342 android:label="@string/webapp_activity_title" 342 android:label="@string/webapp_activity_title"
343 android:launchMode="singleTask" 343 android:launchMode="singleTask"
344 android:windowSoftInputMode="adjustResize" 344 android:windowSoftInputMode="adjustResize"
345 android:persistableMode="persistNever" 345 android:persistableMode="persistNever"
346 android:hardwareAccelerated="true" 346 android:hardwareAccelerated="true"
347 android:taskAffinity="{{ manifest_package }}.webapps.WebappActivity{ { i }}" 347 android:taskAffinity="{{ manifest_package }}.webapps.WebappActivity{ { i }}"
348 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc"> 348 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc">
349 </activity> 349 </activity>
350 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appActivity{{ i }}" 350 <activity-alias android:name="com.google.android.apps.chrome.webapps.Web appActivity{{ i }}"
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 620 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
621 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 621 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
622 The downstream manifest replaces this block, and hence replaces the list of media route 622 The downstream manifest replaces this block, and hence replaces the list of media route
623 controllers with its own list. --> 623 controllers with its own list. -->
624 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 624 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
625 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 625 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
626 626
627 {% endblock %} 627 {% endblock %}
628 </application> 628 </application>
629 </manifest> 629 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/values-v17/styles.xml » ('j') | chrome/android/java/res/values-v17/styles.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698