Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Side by Side Diff: chrome/browser/resources/file_manager/js/file_copy_manager_wrapper.js

Issue 11309014: File manager: support for zipping selected files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Toni's comments for Patch Sets #13, #17 and #22. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 cm[method].apply(cm, args); 133 cm[method].apply(cm, args);
134 }); 134 });
135 }; 135 };
136 }; 136 };
137 137
138 FileCopyManagerWrapper.decorateAsyncMethod('requestCancel'); 138 FileCopyManagerWrapper.decorateAsyncMethod('requestCancel');
139 FileCopyManagerWrapper.decorateAsyncMethod('paste'); 139 FileCopyManagerWrapper.decorateAsyncMethod('paste');
140 FileCopyManagerWrapper.decorateAsyncMethod('deleteEntries'); 140 FileCopyManagerWrapper.decorateAsyncMethod('deleteEntries');
141 FileCopyManagerWrapper.decorateAsyncMethod('forceDeleteTask'); 141 FileCopyManagerWrapper.decorateAsyncMethod('forceDeleteTask');
142 FileCopyManagerWrapper.decorateAsyncMethod('cancelDeleteTask'); 142 FileCopyManagerWrapper.decorateAsyncMethod('cancelDeleteTask');
143 FileCopyManagerWrapper.decorateAsyncMethod('zipSelection');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698