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

Side by Side Diff: chrome/browser/resources/md_history/externs.js

Issue 2230003002: MD History: Add lazy-render element for simple lazy initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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
(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) {};
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/constants.js ('k') | chrome/browser/resources/md_history/history_toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698