mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 10:18:41 +02:00 
			
		
		
		
	Depends on D187704 Differential Revision: https://phabricator.services.mozilla.com/D187705
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.4 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 {
 | 
						|
  generateActorSpec,
 | 
						|
  Arg,
 | 
						|
  RetVal,
 | 
						|
  types,
 | 
						|
} = require("resource://devtools/shared/protocol.js");
 | 
						|
 | 
						|
types.addDictType("target-configuration.configuration", {
 | 
						|
  cacheDisabled: "nullable:boolean",
 | 
						|
  colorSchemeSimulation: "nullable:string",
 | 
						|
  customFormatters: "nullable:boolean",
 | 
						|
  customUserAgent: "nullable:string",
 | 
						|
  javascriptEnabled: "nullable:boolean",
 | 
						|
  overrideDPPX: "nullable:number",
 | 
						|
  printSimulationEnabled: "nullable:boolean",
 | 
						|
  rdmPaneOrientation: "nullable:json",
 | 
						|
  reloadOnTouchSimulationToggle: "nullable:boolean",
 | 
						|
  restoreFocus: "nullable:boolean",
 | 
						|
  serviceWorkersTestingEnabled: "nullable:boolean",
 | 
						|
  setTabOffline: "nullable:boolean",
 | 
						|
  touchEventsOverride: "nullable:string",
 | 
						|
});
 | 
						|
 | 
						|
const targetConfigurationSpec = generateActorSpec({
 | 
						|
  typeName: "target-configuration",
 | 
						|
 | 
						|
  methods: {
 | 
						|
    updateConfiguration: {
 | 
						|
      request: {
 | 
						|
        configuration: Arg(0, "target-configuration.configuration"),
 | 
						|
      },
 | 
						|
      response: {
 | 
						|
        configuration: RetVal("target-configuration.configuration"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
    isJavascriptEnabled: {
 | 
						|
      request: {},
 | 
						|
      response: {
 | 
						|
        javascriptEnabled: RetVal("boolean"),
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 | 
						|
 | 
						|
exports.targetConfigurationSpec = targetConfigurationSpec;
 |