| OLD | NEW |
| 1 /** | 1 /** |
| 2 * @fileoverview Closure compiler externs for the Polymer library. | 2 * @fileoverview Closure compiler externs for the Polymer library. |
| 3 * | 3 * |
| 4 * @externs | 4 * @externs |
| 5 * @license | 5 * @license |
| 6 * Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 6 * Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 7 * This code may only be used under the BSD style license found at | 7 * This code may only be used under the BSD style license found at |
| 8 * http://polymer.github.io/LICENSE.txt. The complete set of authors may be | 8 * http://polymer.github.io/LICENSE.txt. The complete set of authors may be |
| 9 * found at http://polymer.github.io/AUTHORS.txt. The complete set of | 9 * found at http://polymer.github.io/AUTHORS.txt. The complete set of |
| 10 * contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt. Code | 10 * contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt. Code |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 /** | 333 /** |
| 334 * Returns a Polymer-friendly API for manipulating DOM of a specified node. | 334 * Returns a Polymer-friendly API for manipulating DOM of a specified node. |
| 335 * | 335 * |
| 336 * @param {?Node} node | 336 * @param {?Node} node |
| 337 * @return {!PolymerDomApi} | 337 * @return {!PolymerDomApi} |
| 338 */ | 338 */ |
| 339 Polymer.dom = function(node) {}; | 339 Polymer.dom = function(node) {}; |
| 340 | 340 |
| 341 Polymer.dom.flush = function() {}; | 341 Polymer.dom.flush = function() {}; |
| 342 | 342 |
| OLD | NEW |