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

Unified Diff: chrome/browser/media_galleries/fileapi/supported_image_type_validator.cc

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/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);
};

Powered by Google App Engine
This is Rietveld 408576698