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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 android:exported="false" /> | 508 android:exported="false" /> |
509 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> | 509 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> |
510 <intent-filter> | 510 <intent-filter> |
511 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 511 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
512 </intent-filter> | 512 </intent-filter> |
513 </receiver> | 513 </receiver> |
514 | 514 |
515 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" | 515 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" |
516 android:exported="true" | 516 android:exported="true" |
517 tools:ignore="ExportedService" /> | 517 tools:ignore="ExportedService" /> |
518 <service android:name="org.chromium.chrome.browser.customtabs.ChromeConn
ectionService" | 518 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs
ConnectionService" |
519 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul
t'] else 'false' }}" | 519 android:exported="{{ 'true' if channel in ['dev', 'canary', 'defaul
t'] else 'false' }}" |
520 tools:ignore="ExportedService"> | 520 tools:ignore="ExportedService"> |
521 <intent-filter> | 521 <intent-filter> |
522 <action android:name="android.intent.action.MAIN" /> | 522 <action android:name="android.intent.action.MAIN" /> |
523 <category android:name="android.intent.category.CUSTOM_TABS" /> | 523 <category android:name="android.intent.category.CUSTOM_TABS" /> |
524 </intent-filter> | 524 </intent-filter> |
525 </service> | 525 </service> |
526 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS
ervice" | 526 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS
ervice" |
527 android:exported="false"/> | 527 android:exported="false"/> |
528 | 528 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 583 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
584 android:value="org.chromium.content.browser.SmartClipProvider"/> | 584 android:value="org.chromium.content.browser.SmartClipProvider"/> |
585 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" | 585 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" |
586 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> | 586 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> |
587 | 587 |
588 {% block extra_application_definitions %} | 588 {% block extra_application_definitions %} |
589 {% endblock %} | 589 {% endblock %} |
590 </application> | 590 </application> |
591 </manifest> | 591 </manifest> |
592 | 592 |
OLD | NEW |