| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 /** | 4 /** |
| 5 * @interface | 5 * @interface |
| 6 */ | 6 */ |
| 7 WebInspector.TextEditorFactory = function() {}; | 7 WebInspector.TextEditorFactory = function() {}; |
| 8 | 8 |
| 9 WebInspector.TextEditorFactory.prototype = { | 9 WebInspector.TextEditorFactory.prototype = { |
| 10 /** | 10 /** |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 * lineWrapping: boolean, | 80 * lineWrapping: boolean, |
| 81 * mimeType: (string|undefined), | 81 * mimeType: (string|undefined), |
| 82 * autoHeight: (boolean|undefined) | 82 * autoHeight: (boolean|undefined) |
| 83 * }} | 83 * }} |
| 84 */ | 84 */ |
| 85 WebInspector.TextEditor.Options; | 85 WebInspector.TextEditor.Options; |
| 86 | 86 |
| 87 /** | 87 /** |
| 88 * @typedef {{ | 88 * @typedef {{ |
| 89 * substituteRangeCallback: ((function(number, number):?WebInspector.TextRan
ge)|undefined), | 89 * substituteRangeCallback: ((function(number, number):?WebInspector.TextRan
ge)|undefined), |
| 90 * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.Te
xtRange):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined), | 90 * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.Te
xtRange, boolean=):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined), |
| 91 * isWordChar: ((function(string):boolean)|undefined), | 91 * isWordChar: ((function(string):boolean)|undefined), |
| 92 * captureEnter: (boolean|undefined) | 92 * captureEnter: (boolean|undefined) |
| 93 * }} | 93 * }} |
| 94 */ | 94 */ |
| 95 WebInspector.AutocompleteConfig; | 95 WebInspector.AutocompleteConfig; |
| OLD | NEW |