| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 * @constructor | 6 * @constructor |
| 7 * @struct | 7 * @struct |
| 8 * @extends {PolymerElement} | 8 * @extends {PolymerElement} |
| 9 */ | 9 */ |
| 10 function FilesToggleRipple() {} | 10 function FilesToggleRipple() {} |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 * @param {string} text | 35 * @param {string} text |
| 36 * @param {{text: string, callback: function()}=} opt_action | 36 * @param {{text: string, callback: function()}=} opt_action |
| 37 */ | 37 */ |
| 38 FilesToast.prototype.show = function(text, opt_action) {}; | 38 FilesToast.prototype.show = function(text, opt_action) {}; |
| 39 | 39 |
| 40 /** | 40 /** |
| 41 * @return {!Promise} | 41 * @return {!Promise} |
| 42 */ | 42 */ |
| 43 FilesToast.prototype.hide = function() {}; | 43 FilesToast.prototype.hide = function() {}; |
| 44 | 44 |
| 45 /** |
| 46 * @constructor |
| 47 * @struct |
| 48 * @extends {PolymerElement} |
| 49 */ |
| 50 function FilesQuickView() {} |
| OLD | NEW |