Commit 2d820afa authored by Cristian Tuns's avatar Cristian Tuns
Browse files

Backed out changeset aefea186c9bc (bug 1810790) for causing mochitest failures...

Backed out changeset aefea186c9bc (bug 1810790) for causing mochitest failures on performance/browser_preferences_usage.js CLOSED TREE
parent 8f36cefe
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ if not CONFIG["MOZ_SYSTEM_JPEG"]:
    external_dirs += ["media/libjpeg"]

DIRS += [
    "/third_party/prio",
    "/third_party/msgpack",
    "/third_party/sipcc",
]
+20 −0
Original line number Diff line number Diff line
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/.
 */

[ChromeOnly, Exposed=Window]
namespace PrioEncoder {
  [Throws, NewObject]
  PrioEncodedData encode(ByteString batchID, PrioParams params);
};

dictionary PrioParams {
  required sequence<boolean> booleans;
};

dictionary PrioEncodedData {
  Uint8Array a;
  Uint8Array b;
};
+4 −0
Original line number Diff line number Diff line
@@ -106,3 +106,7 @@ WEBIDL_FILES += [
    "Glean.webidl",
    "GleanPings.webidl",
]

WEBIDL_FILES += [
    "PrioEncoder.webidl",
]
+1 −0
Original line number Diff line number Diff line
@@ -1443,6 +1443,7 @@ void WindowGlobalParent::ActorDestroy(ActorDestroyReason aWhy) {

        if (mDocumentURI && (net::SchemeIsHTTP(mDocumentURI) ||
                             net::SchemeIsHTTPS(mDocumentURI))) {
          GetContentBlockingLog()->ReportOrigins();
          GetContentBlockingLog()->ReportEmailTrackingLog(DocumentPrincipal());
        }
      }
+1 −0
Original line number Diff line number Diff line
@@ -106,6 +106,7 @@ DIRS += [
    "simpledb",
    "reporting",
    "localstorage",
    "prio",
    "l10n",
    "origin-trials",
    "webscheduling",
Loading