mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	This wasn't so trivial to revisit tests, but at least we stop shipping test-only features in RDP. And the cryptic echo implement now only exists in tests. Differential Revision: https://phabricator.services.mozilla.com/D168360
		
			
				
	
	
		
			139 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* 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/. */
 | 
						|
"use strict";
 | 
						|
 | 
						|
const {
 | 
						|
  types,
 | 
						|
  generateActorSpec,
 | 
						|
  RetVal,
 | 
						|
  Arg,
 | 
						|
  Option,
 | 
						|
} = require("resource://devtools/shared/protocol.js");
 | 
						|
 | 
						|
types.addDictType("root.listWorkers", {
 | 
						|
  workers: "array:workerDescriptor",
 | 
						|
});
 | 
						|
types.addDictType("root.listServiceWorkerRegistrations", {
 | 
						|
  registrations: "array:serviceWorkerRegistration",
 | 
						|
});
 | 
						|
 | 
						|
const rootSpecPrototype = {
 | 
						|
  typeName: "root",
 | 
						|
 | 
						|
  methods: {
 | 
						|
    getRoot: {
 | 
						|
      request: {},
 | 
						|
      response: RetVal("json"),
 | 
						|
    },
 | 
						|
 | 
						|
    listTabs: {
 | 
						|
      request: {},
 | 
						|
      response: {
 | 
						|
        tabs: RetVal("array:tabDescriptor"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
 | 
						|
    getTab: {
 | 
						|
      request: {
 | 
						|
        browserId: Option(0, "number"),
 | 
						|
      },
 | 
						|
      response: {
 | 
						|
        tab: RetVal("tabDescriptor"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
 | 
						|
    listAddons: {
 | 
						|
      request: {
 | 
						|
        iconDataURL: Option(0, "boolean"),
 | 
						|
      },
 | 
						|
      response: {
 | 
						|
        addons: RetVal("array:webExtensionDescriptor"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
 | 
						|
    listWorkers: {
 | 
						|
      request: {},
 | 
						|
      response: RetVal("root.listWorkers"),
 | 
						|
    },
 | 
						|
 | 
						|
    listServiceWorkerRegistrations: {
 | 
						|
      request: {},
 | 
						|
      response: RetVal("root.listServiceWorkerRegistrations"),
 | 
						|
    },
 | 
						|
 | 
						|
    listProcesses: {
 | 
						|
      request: {},
 | 
						|
      response: {
 | 
						|
        processes: RetVal("array:processDescriptor"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
 | 
						|
    getProcess: {
 | 
						|
      request: {
 | 
						|
        id: Arg(0, "number"),
 | 
						|
      },
 | 
						|
      response: {
 | 
						|
        processDescriptor: RetVal("processDescriptor"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
 | 
						|
    watchResources: {
 | 
						|
      request: {
 | 
						|
        resourceTypes: Arg(0, "array:string"),
 | 
						|
      },
 | 
						|
      response: {},
 | 
						|
    },
 | 
						|
 | 
						|
    unwatchResources: {
 | 
						|
      request: {
 | 
						|
        resourceTypes: Arg(0, "array:string"),
 | 
						|
      },
 | 
						|
      oneway: true,
 | 
						|
    },
 | 
						|
 | 
						|
    clearResources: {
 | 
						|
      request: {
 | 
						|
        resourceTypes: Arg(0, "array:string"),
 | 
						|
      },
 | 
						|
      oneway: true,
 | 
						|
    },
 | 
						|
 | 
						|
    requestTypes: {
 | 
						|
      request: {},
 | 
						|
      response: RetVal("json"),
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  events: {
 | 
						|
    tabListChanged: {
 | 
						|
      type: "tabListChanged",
 | 
						|
    },
 | 
						|
    workerListChanged: {
 | 
						|
      type: "workerListChanged",
 | 
						|
    },
 | 
						|
    addonListChanged: {
 | 
						|
      type: "addonListChanged",
 | 
						|
    },
 | 
						|
    serviceWorkerRegistrationListChanged: {
 | 
						|
      type: "serviceWorkerRegistrationListChanged",
 | 
						|
    },
 | 
						|
    processListChanged: {
 | 
						|
      type: "processListChanged",
 | 
						|
    },
 | 
						|
 | 
						|
    "resource-available-form": {
 | 
						|
      type: "resource-available-form",
 | 
						|
      resources: Arg(0, "array:json"),
 | 
						|
    },
 | 
						|
    "resource-destroyed-form": {
 | 
						|
      type: "resource-destroyed-form",
 | 
						|
      resources: Arg(0, "array:json"),
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
const rootSpec = generateActorSpec(rootSpecPrototype);
 | 
						|
 | 
						|
exports.rootSpecPrototype = rootSpecPrototype;
 | 
						|
exports.rootSpec = rootSpec;
 |