Index: third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js b/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
index ba33ebf7cc616370fb641e96334bc92799d46493..1cd2483954bc953dd7a85888e663122363f59855 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
+++ b/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
@@ -223,6 +223,10 @@ WebInspector.SourceFrame.prototype = { |
this._innerScrollToLineIfNeeded(); |
}, |
+ /** |
+ * @param {!WebInspector.TextRange} oldRange |
+ * @param {!WebInspector.TextRange} newRange |
+ */ |
onTextChanged: function(oldRange, newRange) |
{ |
if (this._searchResultsChangedCallback) |
@@ -605,6 +609,8 @@ WebInspector.TextEditorDelegateForSourceFrame = function(sourceFrame) |
WebInspector.TextEditorDelegateForSourceFrame.prototype = { |
/** |
* @override |
+ * @param {!WebInspector.TextRange} oldRange |
+ * @param {!WebInspector.TextRange} newRange |
*/ |
onTextChanged: function(oldRange, newRange) |
{ |