thread-configuration.js (785B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 "use strict"; 6 7 const { 8 FrontClassWithSpec, 9 registerFront, 10 } = require("resource://devtools/shared/protocol.js"); 11 const { 12 threadConfigurationSpec, 13 } = require("resource://devtools/shared/specs/thread-configuration.js"); 14 15 /** 16 * The ThreadConfigurationFront/Actor should be used to maintain thread settings 17 * sent from the client for the thread actor. 18 * 19 * See the ThreadConfigurationActor for a list of supported configuration options. 20 */ 21 class ThreadConfigurationFront extends FrontClassWithSpec( 22 threadConfigurationSpec 23 ) {} 24 25 registerFront(ThreadConfigurationFront);