Chromium Code Reviews| Index: src/inspector/js_protocol.json | 
| diff --git a/src/inspector/js_protocol.json b/src/inspector/js_protocol.json | 
| index 1aa840cd5f6f2719da5bccf28655da9da08f36a6..9ac4845b7965c3b0edc73c142697d3905a90d11e 100644 | 
| --- a/src/inspector/js_protocol.json | 
| +++ b/src/inspector/js_protocol.json | 
| @@ -592,7 +592,8 @@ | 
| "name": "getPossibleBreakpoints", | 
| "parameters": [ | 
| { "name": "start", "$ref": "Location", "description": "Start of range to search possible breakpoint locations in." }, | 
| - { "name": "end", "$ref": "Location", "optional": true, "description": "End of range to search possible breakpoint locations in (excluding). When not specifed, end of scripts is used as end of range." } | 
| + { "name": "end", "$ref": "Location", "optional": true, "description": "End of range to search possible breakpoint locations in (excluding). When not specifed, end of scripts is used as end of range." }, | 
| + { "name": "ignoreNestedFunctions", "type": "boolean", "optional": true, "description": "If true then nested functions in the range are ignored." } | 
| 
 
dgozman
2017/02/22 23:20:39
restrictToFunction
Only consider locations which
 
kozy
2017/02/22 23:43:49
Done.
 
 | 
| ], | 
| "returns": [ | 
| { "name": "locations", "type": "array", "items": { "$ref": "Location" }, "description": "List of the possible breakpoint locations." } |