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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 this.type; | 742 this.type; |
745 /** @type {string} */ | 743 /** @type {string} */ |
746 this.syntax; | 744 this.syntax; |
747 /** @type {!Gonzales.Location} */ | 745 /** @type {!Gonzales.Location} */ |
748 this.start; | 746 this.start; |
749 /** @type {!Gonzales.Location} */ | 747 /** @type {!Gonzales.Location} */ |
750 this.end; | 748 this.end; |
751 /** @type {(string|!Array<!Gonzales.Node>)} */ | 749 /** @type {(string|!Array<!Gonzales.Node>)} */ |
752 this.content; | 750 this.content; |
753 } | 751 } |
OLD | NEW |