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

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

Issue 2478923003: DevTools: Distinguish between forced and unforced autocomplete in CMTE (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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;
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698