mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
Remove all C++ Telemetry Accumulation calls.
This creates a number of stubs and leaves some surrounding code that may be irrelevant (eg. recorded time stamps, status variables). Stub resolution/removal should be a follow-up to this.
This commit is contained in:
parent
ac3468d5cc
commit
8c8145e620
186 changed files with 48 additions and 2957 deletions
|
|
@ -15,7 +15,6 @@
|
|||
#include "js/HeapAPI.h"
|
||||
#include "xpcprivate.h"
|
||||
#include "mozilla/Casting.h"
|
||||
#include "mozilla/Telemetry.h"
|
||||
#include "mozilla/Unused.h"
|
||||
#include "nsAutoPtr.h"
|
||||
|
||||
|
|
@ -110,7 +109,6 @@ JavaScriptParent::allowMessage(JSContext* cx)
|
|||
|
||||
if (!xpc::CompartmentPrivate::Get(jsGlobal)->allowCPOWs) {
|
||||
if (!addonId && ForbidUnsafeBrowserCPOWs() && !isSafe) {
|
||||
Telemetry::Accumulate(Telemetry::BROWSER_SHIM_USAGE_BLOCKED, 1);
|
||||
JS_ReportErrorASCII(cx, "unsafe CPOW usage forbidden");
|
||||
return false;
|
||||
}
|
||||
|
|
@ -120,7 +118,6 @@ JavaScriptParent::allowMessage(JSContext* cx)
|
|||
nsString addonIdString;
|
||||
AssignJSFlatString(addonIdString, flat);
|
||||
NS_ConvertUTF16toUTF8 addonIdCString(addonIdString);
|
||||
Telemetry::Accumulate(Telemetry::ADDON_FORBIDDEN_CPOW_USAGE, addonIdCString);
|
||||
|
||||
if (ForbidCPOWsInCompatibleAddon(addonIdCString)) {
|
||||
JS_ReportErrorASCII(cx, "CPOW usage forbidden in this add-on");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue