| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** |
| 6 * @fileoverview Externs required to closure-compile MD History. |
| 7 * @externs |
| 8 */ |
| 9 |
| 10 // Types: |
| 11 /** |
| 12 * @typedef {{groupedOffset: number, |
| 13 * incremental: boolean, |
| 14 * querying: boolean, |
| 15 * range: HistoryRange, |
| 16 * searchTerm: string}} |
| 17 */ |
| 18 var QueryState; |
| 19 |
| 20 /** |
| 21 * @typedef {{info: ?HistoryQuery, |
| 22 * results: ?Array<!HistoryEntry>, |
| 23 * sessionList: ?Array<!ForeignSession>}} |
| 24 */ |
| 25 var QueryResult; |
| 26 |
| 27 /** |
| 28 * @constructor |
| 29 * @extends {MouseEvent} |
| 30 */ |
| 31 var DomRepeatClickEvent = function() {}; |
| 32 |
| 33 /** @type {Object} */ |
| 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 |