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

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

Issue 2772643002: DevTools: Changes View (Closed)
Patch Set: fix test Created 3 years, 8 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
OLDNEW
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 UI.TextEditorFactory = function() {}; 7 UI.TextEditorFactory = function() {};
8 8
9 UI.TextEditorFactory.prototype = { 9 UI.TextEditorFactory.prototype = {
10 /** 10 /**
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 tokenAtTextPosition(lineNumber, columnNumber) {} 80 tokenAtTextPosition(lineNumber, columnNumber) {}
81 }; 81 };
82 82
83 /** 83 /**
84 * @typedef {{ 84 * @typedef {{
85 * bracketMatchingSetting: (!Common.Setting|undefined), 85 * bracketMatchingSetting: (!Common.Setting|undefined),
86 * lineNumbers: boolean, 86 * lineNumbers: boolean,
87 * lineWrapping: boolean, 87 * lineWrapping: boolean,
88 * mimeType: (string|undefined), 88 * mimeType: (string|undefined),
89 * autoHeight: (boolean|undefined), 89 * autoHeight: (boolean|undefined),
90 * padBottom: (boolean|undefined) 90 * padBottom: (boolean|undefined),
91 * maxHighlightLength: (number|undefined)
91 * }} 92 * }}
92 */ 93 */
93 UI.TextEditor.Options; 94 UI.TextEditor.Options;
94 95
95 /** 96 /**
96 * @typedef {{ 97 * @typedef {{
97 * substituteRangeCallback: ((function(number, number):?TextUtils.TextRange) |undefined), 98 * substituteRangeCallback: ((function(number, number):?TextUtils.TextRange) |undefined),
98 * suggestionsCallback: ((function(!TextUtils.TextRange, !TextUtils.TextRang e, boolean=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined), 99 * suggestionsCallback: ((function(!TextUtils.TextRange, !TextUtils.TextRang e, boolean=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined),
99 * isWordChar: ((function(string):boolean)|undefined), 100 * isWordChar: ((function(string):boolean)|undefined),
100 * captureEnter: (boolean|undefined) 101 * captureEnter: (boolean|undefined)
101 * }} 102 * }}
102 */ 103 */
103 UI.AutocompleteConfig; 104 UI.AutocompleteConfig;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698