| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview Externs required to closure-compile MD History. | 6 * @fileoverview Externs required to closure-compile MD History. |
| 7 * @externs | 7 * @externs |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 // Types: | 10 // Types: |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 var QueryResult; | 25 var QueryResult; |
| 26 | 26 |
| 27 /** | 27 /** |
| 28 * @constructor | 28 * @constructor |
| 29 * @extends {MouseEvent} | 29 * @extends {MouseEvent} |
| 30 */ | 30 */ |
| 31 var DomRepeatClickEvent = function() {}; | 31 var DomRepeatClickEvent = function() {}; |
| 32 | 32 |
| 33 /** @type {Object} */ | 33 /** @type {Object} */ |
| 34 DomRepeatClickEvent.prototype.model; | 34 DomRepeatClickEvent.prototype.model; |
| 35 | |
| 36 /** | |
| 37 * A template instance created by Polymer.Templatizer. | |
| 38 * @constructor | |
| 39 * @extends {PolymerElement} | |
| 40 */ | |
| 41 var TemplateInstance = function() {}; | |
| 42 | |
| 43 /** @type {Array<Element>} */ | |
| 44 TemplateInstance.prototype._children; | |
| 45 | |
| 46 /** | |
| 47 * @param {string} prop | |
| 48 * @param {Object} value | |
| 49 * @param {boolean} quiet | |
| 50 */ | |
| 51 TemplateInstance.prototype.__setProperty = function(prop, value, quiet) {}; | |
| 52 | |
| 53 /** | |
| 54 * @param {string} path | |
| 55 * @param {Object} value | |
| 56 * @param {boolean} quiet | |
| 57 */ | |
| 58 TemplateInstance.prototype._notifyPath = function(path, value, quiet) {}; | |
| OLD | NEW |