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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js

Issue 2331053002: DevTools: Implement the console prompt with CodeMirror (Closed)
Patch Set: Fix browser tests Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..3f52584b52f7b4d92abdbb6bed75ef8a0350b97e 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 2016 The Chromium Authors. All rights reserved.
+// 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;
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698