| 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 1d24736d5403f922fe93f5e8b74a28f1aa5da031..fdda3c26e1fa99b3225f1d5f6f923b652dbf2a40 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
|
| @@ -33,7 +33,7 @@
|
| * @extends {WebInspector.SimpleView}
|
| * @implements {WebInspector.Searchable}
|
| * @implements {WebInspector.Replaceable}
|
| - * @implements {WebInspector.TextEditorDelegate}
|
| + * @implements {WebInspector.SourcesTextEditorDelegate}
|
| * @param {string} url
|
| * @param {function(): !Promise<?string>} lazyContent
|
| */
|
| @@ -44,7 +44,7 @@ WebInspector.SourceFrame = function(url, lazyContent)
|
| this._url = url;
|
| this._lazyContent = lazyContent;
|
|
|
| - this._textEditor = new WebInspector.CodeMirrorTextEditor(this);
|
| + this._textEditor = new WebInspector.SourcesTextEditor(this);
|
|
|
| this._currentSearchResultIndex = -1;
|
| this._searchResults = [];
|
|
|