Bug 920225 - Correct FHR manifest comments. r=rnewman

This commit is contained in:
Michael Comella 2013-09-25 15:31:47 -07:00
parent 237f919f78
commit 7fe0b2ef64
2 changed files with 11 additions and 13 deletions

View File

@ -3,12 +3,9 @@
android:permission="@ANDROID_PACKAGE_NAME@.permissions.HEALTH_PROVIDER">
</provider>
<!-- As well as system actions, we also listen for "Health
Report upload preference changed" notifications sent by
Fennec: @ANDROID_PACKAGE_NAME@.HEALTHREPORT_UPLOAD_PREF.
BroadcastReceiver is a thin receiver whose purpose is to
start the background service in response to external events.
<!-- BroadcastReceiver is a thin receiver whose purpose is to
start the background service in response to external events,
some sent by the system and some particular to Health Report.
-->
<receiver android:name="org.mozilla.gecko.background.healthreport.HealthReportBroadcastReceiver" >
<intent-filter>
@ -20,9 +17,11 @@
<action android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
</intent-filter>
<intent-filter >
<action android:name="@ANDROID_PACKAGE_NAME@.HEALTHREPORT_UPLOAD_PREF" />
<!-- Toggle Health Report upload service alarm (based on preferences value) -->
<action android:name="@ANDROID_PACKAGE_NAME@.HEALTHREPORT_UPLOAD_PREF" />
</intent-filter>
<intent-filter >
<action android:name="@ANDROID_PACKAGE_NAME@.HEALTHREPORT_PRUNE" />
<!-- Enable Health Report prune service alarm -->
<action android:name="@ANDROID_PACKAGE_NAME@.HEALTHREPORT_PRUNE" />
</intent-filter>
</receiver>

View File

@ -1,8 +1,7 @@
<!-- We have two services. BroadcastService responds to
external events and starts the regular Service, which
does the actual background work, in a uniform manner. We
don't export either of these services, since they are
only started by receivers internal to the Fennec package.
<!-- BroadcastService responds to external events and starts
the other background services. We don't export any of
these services, since they are only started by components
internal to the Fennec package.
-->
<service
android:exported="false"