| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 * @param {string} query | 126 * @param {string} query |
| 127 * @param {string} text | 127 * @param {string} text |
| 128 */ | 128 */ |
| 129 replaceAllWith: function(query, text) | 129 replaceAllWith: function(query, text) |
| 130 { | 130 { |
| 131 }, | 131 }, |
| 132 | 132 |
| 133 /** | 133 /** |
| 134 * @return {boolean} | 134 * @return {boolean} |
| 135 */ | 135 */ |
| 136 canFilter: function() | |
| 137 { | |
| 138 return false; | |
| 139 }, | |
| 140 | |
| 141 /** | |
| 142 * @param {string} query | |
| 143 */ | |
| 144 performFilter: function(query) | |
| 145 { | |
| 146 }, | |
| 147 | |
| 148 /** | |
| 149 * @return {boolean} | |
| 150 */ | |
| 151 canSetFooterElement: function() | 136 canSetFooterElement: function() |
| 152 { | 137 { |
| 153 return false; | 138 return false; |
| 154 }, | 139 }, |
| 155 | 140 |
| 156 /** | 141 /** |
| 157 * @param {?Element} element | 142 * @param {?Element} element |
| 158 */ | 143 */ |
| 159 setFooterElement: function(element) | 144 setFooterElement: function(element) |
| 160 { | 145 { |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 if (this._panel) | 296 if (this._panel) |
| 312 return this._panel; | 297 return this._panel; |
| 313 if (this._scriptName) | 298 if (this._scriptName) |
| 314 loadScript(this._scriptName); | 299 loadScript(this._scriptName); |
| 315 this._panel = new WebInspector[this._className]; | 300 this._panel = new WebInspector[this._className]; |
| 316 return this._panel; | 301 return this._panel; |
| 317 }, | 302 }, |
| 318 | 303 |
| 319 registerShortcuts: function() {} | 304 registerShortcuts: function() {} |
| 320 } | 305 } |
| OLD | NEW |