| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 |
| 6 /** | 7 /** |
| 7 * @unrestricted | 8 * @unrestricted |
| 8 */ | 9 */ |
| 9 WebInspector.OpenResourceDialog = class extends WebInspector.FilteredUISourceCod
eListDelegate { | 10 WebInspector.OpenResourceDialog = class extends WebInspector.FilteredUISourceCod
eListDelegate { |
| 10 /** | 11 /** |
| 11 * @param {!WebInspector.SourcesView} sourcesView | 12 * @param {!WebInspector.SourcesView} sourcesView |
| 12 * @param {!Map.<!WebInspector.UISourceCode, number>} defaultScores | 13 * @param {!Map.<!WebInspector.UISourceCode, number>} defaultScores |
| 13 * @param {!Array<string>} history | 14 * @param {!Array<string>} history |
| 14 */ | 15 */ |
| 15 constructor(sourcesView, defaultScores, history) { | 16 constructor(sourcesView, defaultScores, history) { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 } | 123 } |
| 123 | 124 |
| 124 /** | 125 /** |
| 125 * @override | 126 * @override |
| 126 * @return {boolean} | 127 * @return {boolean} |
| 127 */ | 128 */ |
| 128 renderAsTwoRows() { | 129 renderAsTwoRows() { |
| 129 return true; | 130 return true; |
| 130 } | 131 } |
| 131 }; | 132 }; |
| OLD | NEW |