| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 /** | 4 /** |
| 5 * @implements {Sources.SourcesView.EditorAction} | 5 * @implements {Sources.SourcesView.EditorAction} |
| 6 * @unrestricted | 6 * @unrestricted |
| 7 */ | 7 */ |
| 8 Sources.InplaceFormatterEditorAction = class { | 8 Sources.InplaceFormatterEditorAction = class { |
| 9 /** | 9 /** |
| 10 * @param {!Common.Event} event | 10 * @param {!Common.Event} event |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 */ | 81 */ |
| 82 function contentLoaded(content) { | 82 function contentLoaded(content) { |
| 83 var highlighterType = Bindings.NetworkProject.uiSourceCodeMimeType(uiSourc
eCode); | 83 var highlighterType = Bindings.NetworkProject.uiSourceCodeMimeType(uiSourc
eCode); |
| 84 Sources.Formatter.format( | 84 Sources.Formatter.format( |
| 85 uiSourceCode.contentType(), highlighterType, content || '', innerCallb
ack.bind(this)); | 85 uiSourceCode.contentType(), highlighterType, content || '', innerCallb
ack.bind(this)); |
| 86 } | 86 } |
| 87 | 87 |
| 88 /** | 88 /** |
| 89 * @this {Sources.InplaceFormatterEditorAction} | 89 * @this {Sources.InplaceFormatterEditorAction} |
| 90 * @param {string} formattedContent | 90 * @param {string} formattedContent |
| 91 * @param {!Sources.FormatterSourceMapping} formatterMapping | 91 * @param {!Workspace.UISourceCode.SourceMapping} formatterMapping |
| 92 */ | 92 */ |
| 93 function innerCallback(formattedContent, formatterMapping) { | 93 function innerCallback(formattedContent, formatterMapping) { |
| 94 if (uiSourceCode.workingCopy() === formattedContent) | 94 if (uiSourceCode.workingCopy() === formattedContent) |
| 95 return; | 95 return; |
| 96 var sourceFrame = this._sourcesView.viewForFile(uiSourceCode); | 96 var sourceFrame = this._sourcesView.viewForFile(uiSourceCode); |
| 97 var start = [0, 0]; | 97 var start = [0, 0]; |
| 98 if (sourceFrame) { | 98 if (sourceFrame) { |
| 99 var selection = sourceFrame.selection(); | 99 var selection = sourceFrame.selection(); |
| 100 start = formatterMapping.originalToFormatted(selection.startLine, select
ion.startColumn); | 100 start = formatterMapping.originalToFormatted(selection.startLine, select
ion.startColumn); |
| 101 } | 101 } |
| 102 uiSourceCode.setWorkingCopy(formattedContent); | 102 uiSourceCode.setWorkingCopy(formattedContent, Workspace.UISourceCode.Sourc
eMapping.create( |
| 103 formatterMapping._originalLineEndings, formatterMapping._formattedLi
neEndings, formatterMapping._mapping)); |
| 103 this._sourcesView.showSourceLocation(uiSourceCode, start[0], start[1]); | 104 this._sourcesView.showSourceLocation(uiSourceCode, start[0], start[1]); |
| 104 } | 105 } |
| 105 } | 106 } |
| 106 }; | 107 }; |
| OLD | NEW |