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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 | 365 |
366 <!-- Provider for FileProvider. --> | 366 <!-- Provider for FileProvider. --> |
367 <provider android:name="org.chromium.chrome.browser.util.CompatibilityFi
leProvider" | 367 <provider android:name="org.chromium.chrome.browser.util.CompatibilityFi
leProvider" |
368 android:authorities="{{ manifest_package }}.FileProvider" | 368 android:authorities="{{ manifest_package }}.FileProvider" |
369 android:exported="false" | 369 android:exported="false" |
370 android:grantUriPermissions="true"> | 370 android:grantUriPermissions="true"> |
371 <meta-data android:name="android.support.FILE_PROVIDER_PATHS" | 371 <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
372 android:resource="@xml/file_paths" /> | 372 android:resource="@xml/file_paths" /> |
373 </provider> | 373 </provider> |
374 | 374 |
375 <!-- Sync adapter for browser sync. --> | 375 <!-- Sync adapter for browser invalidation. --> |
376 <service android:name="org.chromium.chrome.browser.sync.ChromeBrowserSyn
cAdapterService" | 376 <service android:name="org.chromium.chrome.browser.invalidation.ChromeBr
owserSyncAdapterService" |
377 android:exported="false"> | 377 android:exported="false"> |
378 <intent-filter> | 378 <intent-filter> |
379 <action android:name="android.content.SyncAdapter" /> | 379 <action android:name="android.content.SyncAdapter" /> |
380 </intent-filter> | 380 </intent-filter> |
381 <meta-data android:name="android.content.SyncAdapter" | 381 <meta-data android:name="android.content.SyncAdapter" |
382 android:resource="@xml/syncadapter" /> | 382 android:resource="@xml/syncadapter" /> |
383 </service> | 383 </service> |
384 | 384 |
385 <!-- Broadcast receiver that will be notified of account changes --> | 385 <!-- Broadcast receiver that will be notified of account changes --> |
386 <receiver android:name="org.chromium.chrome.browser.services.AccountsCha
ngedReceiver"> | 386 <receiver android:name="org.chromium.chrome.browser.services.AccountsCha
ngedReceiver"> |
(...skipping 196 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 |