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

Unified Diff: chrome/browser/media_galleries/fileapi/media_file_validator_factory.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media_galleries/fileapi/media_file_validator_factory.h
diff --git a/chrome/browser/media_galleries/fileapi/media_file_validator_factory.h b/chrome/browser/media_galleries/fileapi/media_file_validator_factory.h
index 1da7f031d41c6d0761ddc3957c4f09f48879a581..8b08c87fd30250744cfa5e4f7c73090b1a011d3a 100644
--- a/chrome/browser/media_galleries/fileapi/media_file_validator_factory.h
+++ b/chrome/browser/media_galleries/fileapi/media_file_validator_factory.h
@@ -6,13 +6,13 @@
#define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_VALIDATOR_FACTORY_H_
#include "base/basictypes.h"
-#include "webkit/browser/fileapi/copy_or_move_file_validator.h"
+#include "storage/browser/fileapi/copy_or_move_file_validator.h"
namespace base {
class FilePath;
}
-namespace fileapi {
+namespace storage {
class FileSystemURL;
}
@@ -20,15 +20,16 @@ class FileSystemURL;
// strategies (depending on the file type) to attempt to verify that the file
// is a valid media file.
class MediaFileValidatorFactory
- : public fileapi::CopyOrMoveFileValidatorFactory {
+ : public storage::CopyOrMoveFileValidatorFactory {
public:
MediaFileValidatorFactory();
virtual ~MediaFileValidatorFactory();
// CopyOrMoveFileValidatorFactory implementation.
- virtual fileapi::CopyOrMoveFileValidator* CreateCopyOrMoveFileValidator(
- const fileapi::FileSystemURL& src,
- const base::FilePath& platform_path) OVERRIDE;
+ virtual storage::CopyOrMoveFileValidator* CreateCopyOrMoveFileValidator(
+ const storage::FileSystemURL& src,
+ const base::FilePath& platform_path) OVERRIDE;
+
private:
DISALLOW_COPY_AND_ASSIGN(MediaFileValidatorFactory);
};

Powered by Google App Engine
This is Rietveld 408576698