Home | History | Annotate | Download | only in fileapi
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_VALIDATOR_FACTORY_H_
      6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_VALIDATOR_FACTORY_H_
      7 
      8 #include "base/basictypes.h"
      9 #include "webkit/browser/fileapi/copy_or_move_file_validator.h"
     10 
     11 namespace base {
     12 class FilePath;
     13 }
     14 
     15 namespace fileapi {
     16 class FileSystemURL;
     17 }
     18 
     19 namespace chrome {
     20 
     21 // A factory for media file validators. A media file validator will use various
     22 // strategies (depending on the file type) to attempt to verify that the file
     23 // is a valid media file.
     24 class MediaFileValidatorFactory
     25     : public fileapi::CopyOrMoveFileValidatorFactory {
     26  public:
     27   MediaFileValidatorFactory();
     28   virtual ~MediaFileValidatorFactory();
     29 
     30   // CopyOrMoveFileValidatorFactory implementation.
     31   virtual fileapi::CopyOrMoveFileValidator* CreateCopyOrMoveFileValidator(
     32             const fileapi::FileSystemURL& src,
     33             const base::FilePath& platform_path) OVERRIDE;
     34  private:
     35   DISALLOW_COPY_AND_ASSIGN(MediaFileValidatorFactory);
     36 };
     37 
     38 }  // namespace chrome
     39 
     40 #endif  // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_VALIDATOR_FACTORY_H_
     41