| OLD | NEW |
| 1 // SSSSSSSSSSSSSSS TTTTTTTTTTTTTTTTTTTTTTT OOOOOOOOO PPPPPPPPPPPPPPPP
P | 1 // SSSSSSSSSSSSSSS TTTTTTTTTTTTTTTTTTTTTTT OOOOOOOOO PPPPPPPPPPPPPPPP
P |
| 2 // SS:::::::::::::::ST:::::::::::::::::::::T OO:::::::::OO P:::::::::::::::
:P | 2 // SS:::::::::::::::ST:::::::::::::::::::::T OO:::::::::OO P:::::::::::::::
:P |
| 3 // S:::::SSSSSS::::::ST:::::::::::::::::::::T OO:::::::::::::OO P::::::PPPPPP:::
::P | 3 // S:::::SSSSSS::::::ST:::::::::::::::::::::T OO:::::::::::::OO P::::::PPPPPP:::
::P |
| 4 // S:::::S SSSSSSST:::::TT:::::::TT:::::TO:::::::OOO:::::::OPP:::::P P::
:::P | 4 // S:::::S SSSSSSST:::::TT:::::::TT:::::TO:::::::OOO:::::::OPP:::::P P::
:::P |
| 5 // S:::::S TTTTTT T:::::T TTTTTTO::::::O O::::::O P::::P P::
:::P | 5 // S:::::S TTTTTT T:::::T TTTTTTO::::::O O::::::O P::::P P::
:::P |
| 6 // S:::::S T:::::T O:::::O O:::::O P::::P P::
:::P | 6 // S:::::S T:::::T O:::::O O:::::O P::::P P::
:::P |
| 7 // S::::SSSS P::::PPPPPP:::
::P | 7 // S::::SSSS P::::PPPPPP:::
::P |
| 8 // SS::::::SSSSS This file is generated. To update it, P:::::::::::::
PP | 8 // SS::::::SSSSS This file is generated. To update it, P:::::::::::::
PP |
| 9 // SSS::::::::SS run roll_closure_compiler. P::::PPPPPPPPP | 9 // SSS::::::::SS run roll_closure_compiler. P::::PPPPPPPPP |
| 10 // SSSSSS::::S P::::P | 10 // SSSSSS::::S P::::P |
| (...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1348 * the element's height and width so that the background image is visible. | 1348 * the element's height and width so that the background image is visible. |
| 1349 * | 1349 * |
| 1350 * @param {Element} element The element to which the icon is applied. | 1350 * @param {Element} element The element to which the icon is applied. |
| 1351 * @param {string} icon The name of the icon to apply. | 1351 * @param {string} icon The name of the icon to apply. |
| 1352 * @param {string=} theme (optional) The name or index of the icon to apply. | 1352 * @param {string=} theme (optional) The name or index of the icon to apply. |
| 1353 * @param {number=} scale (optional, defaults to 1) Icon scaling factor. | 1353 * @param {number=} scale (optional, defaults to 1) Icon scaling factor. |
| 1354 */ | 1354 */ |
| 1355 Polymer.Iconset.prototype.applyIcon = function( | 1355 Polymer.Iconset.prototype.applyIcon = function( |
| 1356 element, icon, theme, scale) {}; | 1356 element, icon, theme, scale) {}; |
| 1357 | 1357 |
| 1358 /** |
| 1359 * Remove an icon from the given element by undoing the changes effected |
| 1360 * by `applyIcon`. |
| 1361 * |
| 1362 * @param {Element} element The element from which the icon is removed. |
| 1363 */ |
| 1364 Polymer.Iconset.prototype.removeIcon = function(element) {}; |
| 1365 |
| 1358 Polymer.ResolveUrl = {}; | 1366 Polymer.ResolveUrl = {}; |
| 1359 | 1367 |
| 1360 /** | 1368 /** |
| 1361 * @param {string} cssText Some CSS text taken from ownerDocument. | 1369 * @param {string} cssText Some CSS text taken from ownerDocument. |
| 1362 * @param {!Document} ownerDocument The source of the css. | 1370 * @param {!Document} ownerDocument The source of the css. |
| 1363 * @return {string} The given CSS text with its URLs rewritten to be based on | 1371 * @return {string} The given CSS text with its URLs rewritten to be based on |
| 1364 * the primary document of this window rather than the given ownerDocument. | 1372 * the primary document of this window rather than the given ownerDocument. |
| 1365 */ | 1373 */ |
| 1366 Polymer.ResolveUrl.resolveCss = function(cssText, ownerDocument) {} | 1374 Polymer.ResolveUrl.resolveCss = function(cssText, ownerDocument) {} |
| 1367 /** | 1375 /** |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1466 isContentBelow: function(){}, | 1474 isContentBelow: function(){}, |
| 1467 /** Updates the elements scroll state */ | 1475 /** Updates the elements scroll state */ |
| 1468 _updateScrollState: function(){}, | 1476 _updateScrollState: function(){}, |
| 1469 /** @return {boolean} true if the element is on screen */ | 1477 /** @return {boolean} true if the element is on screen */ |
| 1470 isOnScreen: function(){}, | 1478 isOnScreen: function(){}, |
| 1471 /** @type {number} Internal bookkeeping to track screen position */ | 1479 /** @type {number} Internal bookkeeping to track screen position */ |
| 1472 _deltaHeight: 0, | 1480 _deltaHeight: 0, |
| 1473 /** @return {?Element} Element in local dom by id. */ | 1481 /** @return {?Element} Element in local dom by id. */ |
| 1474 _getDOMRef: function(title){} | 1482 _getDOMRef: function(title){} |
| 1475 } | 1483 } |
| OLD | NEW |