Chromium Code Reviews| 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: |
| 11 /** | 11 /** |
| 12 * @typedef {{groupedOffset: number, | 12 * @typedef {{incremental: boolean, |
| 13 * incremental: boolean, | |
| 14 * querying: boolean, | 13 * querying: boolean, |
| 15 * range: HistoryRange, | |
|
Dan Beam
2017/02/07 18:14:13
where were these actually removed from C++?
tsergeant
2017/02/08 00:12:36
This typedef is purely for JS -- it doesn't have a
Dan Beam
2017/02/08 00:38:53
ehhh, in an ideal world (I guess) this would be a
| |
| 16 * searchTerm: string}} | 14 * searchTerm: string}} |
| 17 */ | 15 */ |
| 18 var QueryState; | 16 var QueryState; |
| 19 | 17 |
| 20 /** | 18 /** |
| 21 * @typedef {{info: ?HistoryQuery, | 19 * @typedef {{info: ?HistoryQuery, |
| 22 * results: ?Array<!HistoryEntry>, | 20 * results: ?Array<!HistoryEntry>, |
| 23 * sessionList: ?Array<!ForeignSession>}} | 21 * sessionList: ?Array<!ForeignSession>}} |
| 24 */ | 22 */ |
| 25 var QueryResult; | 23 var QueryResult; |
| 26 | 24 |
| 27 /** | 25 /** |
| 28 * @constructor | 26 * @constructor |
| 29 * @extends {MouseEvent} | 27 * @extends {MouseEvent} |
| 30 */ | 28 */ |
| 31 var DomRepeatClickEvent = function() {}; | 29 var DomRepeatClickEvent = function() {}; |
| 32 | 30 |
| 33 /** @type {Object} */ | 31 /** @type {Object} */ |
| 34 DomRepeatClickEvent.prototype.model; | 32 DomRepeatClickEvent.prototype.model; |
| OLD | NEW |