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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
543 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> | 543 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> |
544 <intent-filter> | 544 <intent-filter> |
545 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 545 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
546 </intent-filter> | 546 </intent-filter> |
547 </receiver> | 547 </receiver> |
548 | 548 |
549 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" | 549 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" |
550 android:exported="true" | 550 android:exported="true" |
551 tools:ignore="ExportedService" /> | 551 tools:ignore="ExportedService" /> |
552 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" | 552 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" |
553 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul t'] else 'false' }}" | 553 android:exported="true" |
newt (away)
2015/08/04 23:51:30
funky indentation
| |
554 tools:ignore="ExportedService"> | 554 tools:ignore="ExportedService"> |
555 <intent-filter> | 555 <intent-filter> |
556 <action android:name="android.support.customtabs.action.CustomTabs Service" /> | 556 <action android:name="android.support.customtabs.action.CustomTabs Service" /> |
557 </intent-filter> | 557 </intent-filter> |
558 </service> | 558 </service> |
559 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService" | 559 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService" |
560 android:exported="false"/> | 560 android:exported="false"/> |
561 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService" | 561 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService" |
562 android:exported="false"/> | 562 android:exported="false"/> |
563 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" | 563 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
633 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 633 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
634 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 634 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
635 The downstream manifest replaces this block, and hence replaces the list of media route | 635 The downstream manifest replaces this block, and hence replaces the list of media route |
636 controllers with its own list. --> | 636 controllers with its own list. --> |
637 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 637 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
638 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 638 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
639 | 639 |
640 {% endblock %} | 640 {% endblock %} |
641 </application> | 641 </application> |
642 </manifest> | 642 </manifest> |
OLD | NEW |