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

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

Issue 2282403005: MD WebUI: Move history-lazy-render into cr-elements (Closed)
Patch Set: Rebase Created 4 years, 3 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 // 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
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) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698