OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * | 10 * |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 EditorSelected: "EditorSelected", | 72 EditorSelected: "EditorSelected", |
73 EditorClosed: "EditorClosed" | 73 EditorClosed: "EditorClosed" |
74 } | 74 } |
75 | 75 |
76 WebInspector.TabbedEditorContainer._tabId = 0; | 76 WebInspector.TabbedEditorContainer._tabId = 0; |
77 | 77 |
78 WebInspector.TabbedEditorContainer.maximalPreviouslyViewedFilesCount = 30; | 78 WebInspector.TabbedEditorContainer.maximalPreviouslyViewedFilesCount = 30; |
79 | 79 |
80 WebInspector.TabbedEditorContainer.prototype = { | 80 WebInspector.TabbedEditorContainer.prototype = { |
81 /** | 81 /** |
82 * @return {!WebInspector.View} | 82 * @return {!WebInspector.Widget} |
83 */ | 83 */ |
84 get view() | 84 get view() |
85 { | 85 { |
86 return this._tabbedPane; | 86 return this._tabbedPane; |
87 }, | 87 }, |
88 | 88 |
89 /** | 89 /** |
90 * @type {!WebInspector.SourceFrame} | 90 * @type {!WebInspector.SourceFrame} |
91 */ | 91 */ |
92 get visibleView() | 92 get visibleView() |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 /** | 731 /** |
732 * @override | 732 * @override |
733 * @param {!WebInspector.TabbedPane} tabbedPane | 733 * @param {!WebInspector.TabbedPane} tabbedPane |
734 * @param {!Array.<string>} ids | 734 * @param {!Array.<string>} ids |
735 */ | 735 */ |
736 closeTabs: function(tabbedPane, ids) | 736 closeTabs: function(tabbedPane, ids) |
737 { | 737 { |
738 this._editorContainer._closeTabs(ids); | 738 this._editorContainer._closeTabs(ids); |
739 } | 739 } |
740 } | 740 } |
OLD | NEW |