| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 var fileCopyManagerWrapper = null; | 5 var fileCopyManagerWrapper = null; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * While FileCopyManager is run in the background page, this class is used to | 8 * While FileCopyManager is run in the background page, this class is used to |
| 9 * communicate with it. | 9 * communicate with it. |
| 10 * @constructor | 10 * @constructor |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 cm[method].apply(cm, args); | 127 cm[method].apply(cm, args); |
| 128 }); | 128 }); |
| 129 }; | 129 }; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 FileCopyManagerWrapper.decorateAsyncMethod('requestCancel'); | 132 FileCopyManagerWrapper.decorateAsyncMethod('requestCancel'); |
| 133 FileCopyManagerWrapper.decorateAsyncMethod('paste'); | 133 FileCopyManagerWrapper.decorateAsyncMethod('paste'); |
| 134 FileCopyManagerWrapper.decorateAsyncMethod('deleteEntries'); | 134 FileCopyManagerWrapper.decorateAsyncMethod('deleteEntries'); |
| 135 FileCopyManagerWrapper.decorateAsyncMethod('forceDeleteTask'); | 135 FileCopyManagerWrapper.decorateAsyncMethod('forceDeleteTask'); |
| 136 FileCopyManagerWrapper.decorateAsyncMethod('cancelDeleteTask'); | 136 FileCopyManagerWrapper.decorateAsyncMethod('cancelDeleteTask'); |
| 137 FileCopyManagerWrapper.decorateAsyncMethod('zipSelection'); |
| OLD | NEW |