Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js b/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
| index d05df07f0adb0eb76e06e18687983f0398af8b53..c45a38f96d85ea991996666e094cf37fa7381b46 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
| @@ -1,3 +1,7 @@ |
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
|
dgozman
2016/09/14 21:20:17
http://dev.chromium.org/blink/coding-style#TOC-Lic
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| /** |
| * @interface |
| */ |
| @@ -77,7 +81,8 @@ WebInspector.TextEditor.prototype = { |
| * bracketMatchingSetting: (!WebInspector.Setting|undefined), |
| * lineNumbers: boolean, |
| * lineWrapping: boolean, |
| - * mimeType: (string|undefined) |
| + * mimeType: (string|undefined), |
| + * autoHeight: (boolean|undefined) |
| * }} |
| **/ |
| WebInspector.TextEditor.Options; |
| @@ -86,7 +91,8 @@ WebInspector.TextEditor.Options; |
| * @typedef {{ |
| * substituteRangeCallback: ((function(number, number):?WebInspector.TextRange)|undefined), |
| * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.TextRange):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined), |
| - * isWordChar: ((function(string):boolean)|undefined) |
| + * isWordChar: ((function(string):boolean)|undefined), |
| + * captureEnter: (boolean|undefined) |
| * }} |
| **/ |
| WebInspector.AutocompleteConfig; |