| Index: ui/file_manager/image_loader/request.js
|
| diff --git a/ui/file_manager/image_loader/request.js b/ui/file_manager/image_loader/request.js
|
| index dc17c7ea53993ad073810081b08a12a5b5518ea2..cc7c84d4e3adb34055071bc43d544a314394b984 100644
|
| --- a/ui/file_manager/image_loader/request.js
|
| +++ b/ui/file_manager/image_loader/request.js
|
| @@ -371,9 +371,8 @@ Request.prototype.sendImage_ = function(imageChanged) {
|
| * @private
|
| */
|
| Request.prototype.sendImageData_ = function(data) {
|
| - this.sendResponse_({status: 'success',
|
| - data: data,
|
| - taskId: this.request_.taskId});
|
| + this.sendResponse_(
|
| + {status: 'success', data: data, taskId: this.request_.taskId});
|
| };
|
|
|
| /**
|
| @@ -407,8 +406,8 @@ Request.prototype.onImageLoad_ = function(callback) {
|
| * @private
|
| */
|
| Request.prototype.onImageError_ = function(callback) {
|
| - this.sendResponse_({status: 'error',
|
| - taskId: this.request_.taskId});
|
| + this.sendResponse_(
|
| + {status: 'error', taskId: this.request_.taskId});
|
| this.cleanup_();
|
| this.downloadCallback_();
|
| };
|
|
|