| Index: chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
|
| diff --git a/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h b/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
|
| index 8c655b5542065b2dd4e27e30a28210d937c8e351..c034c5c6defcb87f2e2122d0305d51969549a7e4 100644
|
| --- a/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
|
| +++ b/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
|
| @@ -13,6 +13,10 @@
|
|
|
| class ImageDecoder;
|
|
|
| +namespace webkit_blob {
|
| +class ShareableFileReference;
|
| +}
|
| +
|
| namespace chrome {
|
|
|
| class MediaFileValidatorFactory;
|
| @@ -26,8 +30,12 @@ class SupportedImageTypeValidator : public fileapi::CopyOrMoveFileValidator {
|
| static bool SupportsFileType(const base::FilePath& path);
|
|
|
| virtual void StartValidation(
|
| - const fileapi::CopyOrMoveFileValidator::ResultCallback&
|
| - result_callback) OVERRIDE;
|
| + const ResultCallback& result_callback) OVERRIDE;
|
| +
|
| + virtual void StartPostWriteValidation(
|
| + const base::FilePath& dest_platform_path,
|
| + scoped_refptr<webkit_blob::ShareableFileReference> file_ref,
|
| + const ResultCallback& result_callback) OVERRIDE;
|
|
|
| private:
|
| friend class MediaFileValidatorFactory;
|
|
|