| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 /** | 141 /** |
| 142 * @return {!WebInspector.Widget} | 142 * @return {!WebInspector.Widget} |
| 143 */ | 143 */ |
| 144 get view() | 144 get view() |
| 145 { | 145 { |
| 146 return this._tabbedPane; | 146 return this._tabbedPane; |
| 147 }, | 147 }, |
| 148 | 148 |
| 149 /** | 149 /** |
| 150 * @type {!WebInspector.Widget} | 150 * @return {?WebInspector.Widget} |
| 151 */ | 151 */ |
| 152 get visibleView() | 152 get visibleView() |
| 153 { | 153 { |
| 154 return this._tabbedPane.visibleView; | 154 return this._tabbedPane.visibleView; |
| 155 }, | 155 }, |
| 156 | 156 |
| 157 /** | 157 /** |
| 158 * @return {!Array.<!WebInspector.Widget>} | 158 * @return {!Array.<!WebInspector.Widget>} |
| 159 */ | 159 */ |
| 160 fileViews: function() | 160 fileViews: function() |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 /** | 850 /** |
| 851 * @override | 851 * @override |
| 852 * @param {string} tabId | 852 * @param {string} tabId |
| 853 * @param {!WebInspector.ContextMenu} contextMenu | 853 * @param {!WebInspector.ContextMenu} contextMenu |
| 854 */ | 854 */ |
| 855 onContextMenu: function(tabId, contextMenu) | 855 onContextMenu: function(tabId, contextMenu) |
| 856 { | 856 { |
| 857 this._editorContainer._onContextMenu(tabId, contextMenu); | 857 this._editorContainer._onContextMenu(tabId, contextMenu); |
| 858 } | 858 } |
| 859 }; | 859 }; |
| OLD | NEW |