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

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

Issue 2040563002: Remove FileError interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fe-dep
Patch Set: handleEvent -> invoke and other review nits 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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 this.type; 744 this.type;
745 /** @type {string} */ 745 /** @type {string} */
746 this.syntax; 746 this.syntax;
747 /** @type {!Gonzales.Location} */ 747 /** @type {!Gonzales.Location} */
748 this.start; 748 this.start;
749 /** @type {!Gonzales.Location} */ 749 /** @type {!Gonzales.Location} */
750 this.end; 750 this.end;
751 /** @type {(string|!Array<!Gonzales.Node>)} */ 751 /** @type {(string|!Array<!Gonzales.Node>)} */
752 this.content; 752 this.content;
753 } 753 }
754
755 /**
756 * @type {string}
757 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object
758 * TODO(jsbell): DOMException should be a subclass of Error.
759 */
760 DOMException.prototype.message;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698