mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
Revert "Issue #21 - Remove use counters telemetry"
This reverts commit 8ca9db6b65.
This commit is contained in:
parent
bebaa470c6
commit
92a1cc3139
45 changed files with 1128 additions and 36 deletions
|
|
@ -25,30 +25,38 @@ interface OfflineResourceList : EventTarget {
|
|||
/* The application cache group is now obsolete. */
|
||||
const unsigned short OBSOLETE = 5;
|
||||
|
||||
[Throws]
|
||||
[Throws, UseCounter]
|
||||
readonly attribute unsigned short status;
|
||||
|
||||
/**
|
||||
* Begin the application update process on the associated application cache.
|
||||
*/
|
||||
[Throws]
|
||||
[Throws, UseCounter]
|
||||
void update();
|
||||
|
||||
/**
|
||||
* Swap in the newest version of the application cache, or disassociate
|
||||
* from the cache if the cache group is obsolete.
|
||||
*/
|
||||
[Throws]
|
||||
[Throws, UseCounter]
|
||||
void swapCache();
|
||||
|
||||
/* Events */
|
||||
[UseCounter]
|
||||
attribute EventHandler onchecking;
|
||||
[UseCounter]
|
||||
attribute EventHandler onerror;
|
||||
[UseCounter]
|
||||
attribute EventHandler onnoupdate;
|
||||
[UseCounter]
|
||||
attribute EventHandler ondownloading;
|
||||
[UseCounter]
|
||||
attribute EventHandler onprogress;
|
||||
[UseCounter]
|
||||
attribute EventHandler onupdateready;
|
||||
[UseCounter]
|
||||
attribute EventHandler oncached;
|
||||
[UseCounter]
|
||||
attribute EventHandler onobsolete;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue