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

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

Issue 1847063003: Show the close all incognito notification for tabbed mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check null for file info Created 4 years, 8 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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 </service> 640 </service>
641 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService" 641 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService"
642 android:exported="false"/> 642 android:exported="false"/>
643 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService" 643 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService"
644 android:exported="false"/> 644 android:exported="false"/>
645 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" 645 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice"
646 android:exported="false"/> 646 android:exported="false"/>
647 647
648 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" 648 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient"
649 android:exported="false"/> 649 android:exported="false"/>
650 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService"
651 android:exported="false"/>
652
650 653
651 <!-- The following service entries exist in order to allow us to 654 <!-- The following service entries exist in order to allow us to
652 start more than one sandboxed process. --> 655 start more than one sandboxed process. -->
653 656
654 <!-- NOTE: If you change the value of "android:process" for the below se rvices, 657 <!-- NOTE: If you change the value of "android:process" for the below se rvices,
655 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> 658 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
656 {% set num_sandboxed_services = 20 %} 659 {% set num_sandboxed_services = 20 %}
657 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 660 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
658 android:value="{{ num_sandboxed_services }}"/> 661 android:value="{{ num_sandboxed_services }}"/>
659 {% for i in range(num_sandboxed_services) %} 662 {% for i in range(num_sandboxed_services) %}
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 800 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
798 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 801 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
799 The downstream manifest replaces this block, and hence replaces the list of media route 802 The downstream manifest replaces this block, and hence replaces the list of media route
800 controllers with its own list. --> 803 controllers with its own list. -->
801 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 804 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
802 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 805 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
803 806
804 {% endblock %} 807 {% endblock %}
805 </application> 808 </application>
806 </manifest> 809 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698