Chromium Code Reviews| 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..5d94bb05d5c5b1f9ff3a56d132700cf338bb8d5c 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js |
| @@ -73,6 +73,16 @@ UI.TextEditor.prototype = { |
| clearAutocomplete() {} |
| }; |
| +/** @implements {Common.Emittable} */ |
| +UI.TextEditor.ContentChangedEvent = class { |
|
lushnikov
2017/03/17 01:33:36
we should move the SourceFrame.SourcesTextEditor.E
luoe
2017/03/17 23:44:48
Done.
|
| + /** |
| + * @param {!Array<!CodeMirror.ChangeObject>} changes |
| + */ |
| + constructor(changes) { |
| + this.changes = changes; |
| + } |
| +}; |
| + |
| /** |
| * @typedef {{ |
| * bracketMatchingSetting: (!Common.Setting|undefined), |