| 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 this.exposeExperimentalAPIs = false; | 301 this.exposeExperimentalAPIs = false; |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 /** @type {(string|!Array<!Gonzales.Node>)} */ | 769 /** @type {(string|!Array<!Gonzales.Node>)} */ |
| 772 this.content; | 770 this.content; |
| 773 } | 771 } |
| 774 | 772 |
| 775 /** | 773 /** |
| 776 * @type {string} | 774 * @type {string} |
| 777 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object | 775 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object |
| 778 * TODO(jsbell): DOMException should be a subclass of Error. | 776 * TODO(jsbell): DOMException should be a subclass of Error. |
| 779 */ | 777 */ |
| 780 DOMException.prototype.message; | 778 DOMException.prototype.message; |
| OLD | NEW |