Searched refs:json_command (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | CodeGeneratorFrontend.py | 209 for json_command in json_domain["commands"]: 210 Generator.process_command(json_command, domain_name) 239 def process_command(json_command, domain_name): argument 240 json_command_name = json_command["name"] 243 if "parameters" in json_command: 244 json_params = json_command["parameters"] 265 if "returns" in json_command: 266 for json_return in json_command["returns"]: 271 if "error" in json_command:
|
/external/chromium_org/chrome/browser/devtools/ |
D | devtools_protocol.cc | 54 std::string json_command; in Serialize() local 55 base::JSONWriter::Write(&command, &json_command); in Serialize() 56 return json_command; in Serialize()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | CodeGeneratorInspector.py | 1654 for json_command in json_domain["commands"]: 1655 … Generator.process_command(json_command, domain_name, agent_field_name, agent_interface_name) 1699 def process_command(json_command, domain_name, agent_field_name, agent_interface_name): argument 1700 if (("handlers" in json_command) and (not ("renderer" in json_command["handlers"]))): 1703 json_command_name = json_command["name"] 1705 cmd_enum_name = "k%s_%sCmd" % (domain_name, json_command["name"]) 1711 …backend_agent_interface_list = [] if "redirect" in json_command else Generator.backend_agent_inter… 1727 if "error" in json_command: 1728 json_error = json_command["error"] 1737 if "parameters" in json_command: [all …]
|
/external/chromium_org/content/browser/devtools/ |
D | devtools_protocol.cc | 60 std::string json_command; in Serialize() local 61 base::JSONWriter::Write(&command, &json_command); in Serialize() 62 return json_command; in Serialize()
|