| Index: chrome/browser/media_galleries/fileapi/supported_image_type_validator.cc
|
| diff --git a/chrome/browser/media_galleries/fileapi/supported_image_type_validator.cc b/chrome/browser/media_galleries/fileapi/supported_image_type_validator.cc
|
| index 53ac37c8577c9554578b61a3b6aa099b6a06e951..f216570e8f2faf4c1087f9c3df49cef2af7b1ba2 100644
|
| --- a/chrome/browser/media_galleries/fileapi/supported_image_type_validator.cc
|
| +++ b/chrome/browser/media_galleries/fileapi/supported_image_type_validator.cc
|
| @@ -51,9 +51,8 @@ class ImageDecoderDelegateAdapter : public ImageDecoder::Delegate {
|
| public:
|
| ImageDecoderDelegateAdapter(
|
| scoped_ptr<std::string> data,
|
| - const fileapi::CopyOrMoveFileValidator::ResultCallback& callback)
|
| - : data_(data.Pass()),
|
| - callback_(callback) {
|
| + const storage::CopyOrMoveFileValidator::ResultCallback& callback)
|
| + : data_(data.Pass()), callback_(callback) {
|
| DCHECK(data_);
|
| }
|
|
|
| @@ -75,7 +74,7 @@ class ImageDecoderDelegateAdapter : public ImageDecoder::Delegate {
|
|
|
| private:
|
| scoped_ptr<std::string> data_;
|
| - fileapi::CopyOrMoveFileValidator::ResultCallback callback_;
|
| + storage::CopyOrMoveFileValidator::ResultCallback callback_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ImageDecoderDelegateAdapter);
|
| };
|
|
|