| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 cr.define('print_preview', function() { | 5 cr.define('print_preview', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * Printer sharing invitation data object. | 9 * Printer sharing invitation data object. |
| 10 * @param {string} sender Text identifying invitation sender. | 10 * @param {string} sender Text identifying invitation sender. |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 return this.aclEntry_['scope'] || ''; | 80 return this.aclEntry_['scope'] || ''; |
| 81 }, | 81 }, |
| 82 | 82 |
| 83 /** @return {string} Account this invitation is sent for. */ | 83 /** @return {string} Account this invitation is sent for. */ |
| 84 get account() { | 84 get account() { |
| 85 return this.account_; | 85 return this.account_; |
| 86 } | 86 } |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 // Export | 89 // Export |
| 90 return { | 90 return {Invitation: Invitation}; |
| 91 Invitation: Invitation | |
| 92 }; | |
| 93 }); | 91 }); |
| OLD | NEW |