| Index: third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| index 63c7b708d6453d3b795c05ec30bd20bcf9ac87bc..aaff64778ca95b71674a331481b810fcc183eaed 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| @@ -212,10 +212,16 @@ WebInspector.TabbedEditorContainer.prototype = {
|
| if (userGesture)
|
| this._editorSelectedByUserAction();
|
|
|
| + var previousView = this._currentView;
|
| this._currentView = this.visibleView;
|
| this._addViewListeners();
|
|
|
| - var eventData = { currentFile: this._currentFile, userGesture: userGesture };
|
| + var eventData = {
|
| + currentFile: this._currentFile,
|
| + currentView: this._currentView,
|
| + previousView: previousView,
|
| + userGesture: userGesture
|
| + };
|
| this.dispatchEventToListeners(WebInspector.TabbedEditorContainer.Events.EditorSelected, eventData);
|
| },
|
|
|
|
|