Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(782)

Side by Side Diff: Source/devtools/protocol.json

Issue 761143003: DevTools: remove ScriptPreprocessor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "name": "removeScriptToEvaluateOnLoad", 255 "name": "removeScriptToEvaluateOnLoad",
256 "parameters": [ 256 "parameters": [
257 { "name": "identifier", "$ref": "ScriptIdentifier" } 257 { "name": "identifier", "$ref": "ScriptIdentifier" }
258 ], 258 ],
259 "hidden": true 259 "hidden": true
260 }, 260 },
261 { 261 {
262 "name": "reload", 262 "name": "reload",
263 "parameters": [ 263 "parameters": [
264 { "name": "ignoreCache", "type": "boolean", "optional": true , "description": "If true, browser cache is ignored (as if the user pressed Shif t+refresh)." }, 264 { "name": "ignoreCache", "type": "boolean", "optional": true , "description": "If true, browser cache is ignored (as if the user pressed Shif t+refresh)." },
265 { "name": "scriptToEvaluateOnLoad", "type": "string", "optio nal": true, "description": "If set, the script will be injected into all frames of the inspected page after reload." }, 265 { "name": "scriptToEvaluateOnLoad", "type": "string", "optio nal": true, "description": "If set, the script will be injected into all frames of the inspected page after reload." }
266 { "name": "scriptPreprocessor", "type": "string", "optional" : true, "description": "Script body that should evaluate to function that will p reprocess all the scripts before their compilation.", "hidden": true }
267 ], 266 ],
268 "description": "Reloads given page optionally ignoring the cache .", 267 "description": "Reloads given page optionally ignoring the cache .",
269 "handlers": ["browser", "renderer"] 268 "handlers": ["browser", "renderer"]
270 }, 269 },
271 { 270 {
272 "name": "navigate", 271 "name": "navigate",
273 "parameters": [ 272 "parameters": [
274 { "name": "url", "type": "string", "description": "URL to na vigate the page to." } 273 { "name": "url", "type": "string", "description": "URL to na vigate the page to." }
275 ], 274 ],
276 "returns": [ 275 "returns": [
(...skipping 4528 matching lines...) Expand 10 before | Expand all | Expand 10 after
4805 { 4804 {
4806 "name": "animationPlayerCreated", 4805 "name": "animationPlayerCreated",
4807 "parameters": [ 4806 "parameters": [
4808 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." } 4807 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }
4809 ], 4808 ],
4810 "hidden": true 4809 "hidden": true
4811 } 4810 }
4812 ] 4811 ]
4813 }] 4812 }]
4814 } 4813 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698