Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 2128133002: Timeline AddTraceProvider API Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into record Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698