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 9c5688aadf842c078fd9aea3e90fc222a1018356..2583dea482d43c2164cc0c1b769537e56aa16912 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) {}, |
@@ -87,8 +87,8 @@ UI.TextEditor.Options; |
/** |
* @typedef {{ |
- * substituteRangeCallback: ((function(number, number):?Common.TextRange)|undefined), |
- * suggestionsCallback: ((function(!Common.TextRange, !Common.TextRange, boolean=, string=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined), |
+ * substituteRangeCallback: ((function(number, number):?TextUtils.TextRange)|undefined), |
+ * suggestionsCallback: ((function(!TextUtils.TextRange, !TextUtils.TextRange, boolean=, string=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined), |
* isWordChar: ((function(string):boolean)|undefined), |
* captureEnter: (boolean|undefined) |
* }} |