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 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 /** @constructor */ | 282 /** @constructor */ |
283 function EventSink() {} | 283 function EventSink() {} |
284 /** @constructor */ | 284 /** @constructor */ |
285 function ExtensionSidebarPane() {} | 285 function ExtensionSidebarPane() {} |
286 /** @constructor */ | 286 /** @constructor */ |
287 function Panel() {} | 287 function Panel() {} |
288 /** @constructor */ | 288 /** @constructor */ |
289 function PanelWithSidebar() {} | 289 function PanelWithSidebar() {} |
290 /** @constructor */ | 290 /** @constructor */ |
291 function Resource() {} | 291 function Resource() {} |
292 /** @constructor */ | |
293 function Timeline() {} | |
294 | 292 |
295 var extensionServer; | 293 var extensionServer; |
296 | 294 |
297 /** | 295 /** |
298 * @constructor | 296 * @constructor |
299 */ | 297 */ |
300 function ExtensionDescriptor() { | 298 function ExtensionDescriptor() { |
301 this.startPage = ""; | 299 this.startPage = ""; |
302 this.name = ""; | 300 this.name = ""; |
303 } | 301 } |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 /** @type {(string|!Array<!Gonzales.Node>)} */ | 755 /** @type {(string|!Array<!Gonzales.Node>)} */ |
758 this.content; | 756 this.content; |
759 } | 757 } |
760 | 758 |
761 /** | 759 /** |
762 * @type {string} | 760 * @type {string} |
763 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object | 761 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object |
764 * TODO(jsbell): DOMException should be a subclass of Error. | 762 * TODO(jsbell): DOMException should be a subclass of Error. |
765 */ | 763 */ |
766 DOMException.prototype.message; | 764 DOMException.prototype.message; |
OLD | NEW |