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 d1189e68f2f0046637c001bca8e138fe2872bed6..d1259b6b47a070fb533e520953ccd5b125a886ae 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
+++ b/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
@@ -27,22 +27,22 @@ UI.TextEditor.prototype = { |
widget() {}, |
/** |
- * @return {!Common.TextRange} |
+ * @return {!TextUtils.TextRange} |
*/ |
fullRange() {}, |
/** |
- * @return {!Common.TextRange} |
+ * @return {!TextUtils.TextRange} |
*/ |
selection() {}, |
/** |
- * @param {!Common.TextRange} selection |
+ * @param {!TextUtils.TextRange} selection |
*/ |
setSelection(selection) {}, |
/** |
- * @param {!Common.TextRange=} textRange |
+ * @param {!TextUtils.TextRange=} textRange |
* @return {string} |
*/ |
text(textRange) {}, |
@@ -94,8 +94,8 @@ UI.TextEditor.Options; |
/** |
* @typedef {{ |
- * substituteRangeCallback: ((function(number, number):?Common.TextRange)|undefined), |
- * suggestionsCallback: ((function(!Common.TextRange, !Common.TextRange, boolean=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined), |
+ * substituteRangeCallback: ((function(number, number):?TextUtils.TextRange)|undefined), |
+ * suggestionsCallback: ((function(!TextUtils.TextRange, !TextUtils.TextRange, boolean=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined), |
* isWordChar: ((function(string):boolean)|undefined), |
* captureEnter: (boolean|undefined) |
* }} |