summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/new-console-output/test/fixtures/Services.js
blob: 61b3d5e13845f562b7c5d66ed75cc07e899912be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { PREFS } = require("devtools/client/webconsole/new-console-output/constants");

module.exports = {
  prefs: {
    getIntPref: pref => {
      switch (pref) {
        case "devtools.hud.loglimit":
          return 1000;
      }
    },
    getBoolPref: pref => {
      const falsey = [
        PREFS.FILTER.NET,
        PREFS.FILTER.NETXHR,
        PREFS.UI.FILTER_BAR,
      ];
      return !falsey.includes(pref);
    },
    setBoolPref: () => {},
    clearUserPref: () => {},
  }
};