Source code
Revision control
Copy as Markdown
Other Tools
/* 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
"use strict";
const {
ADD_TIMING_MARKER,
CLEAR_TIMING_MARKERS,
} = require("resource://devtools/client/netmonitor/src/constants.js");
exports.addTimingMarker = marker => {
return {
type: ADD_TIMING_MARKER,
marker,
};
};
exports.clearTimingMarkers = () => {
return {
type: CLEAR_TIMING_MARKERS,
};
};