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

Unified Diff: webkit/browser/fileapi/file_system_file_stream_reader.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: webkit/browser/fileapi/file_system_file_stream_reader.h
diff --git a/webkit/browser/fileapi/file_system_file_stream_reader.h b/webkit/browser/fileapi/file_system_file_stream_reader.h
deleted file mode 100644
index 361502237ebfbefef61aae0ce643988dfc2cc0a4..0000000000000000000000000000000000000000
--- a/webkit/browser/fileapi/file_system_file_stream_reader.h
+++ /dev/null
@@ -1,79 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_FILE_STREAM_READER_H_
-#define WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_FILE_STREAM_READER_H_
-
-#include "base/bind.h"
-#include "base/files/file.h"
-#include "base/memory/ref_counted.h"
-#include "base/time/time.h"
-#include "webkit/browser/blob/file_stream_reader.h"
-#include "webkit/browser/fileapi/file_system_url.h"
-#include "webkit/browser/webkit_storage_browser_export.h"
-#include "webkit/common/blob/shareable_file_reference.h"
-
-namespace base {
-class FilePath;
-class SequencedTaskRunner;
-}
-
-namespace content {
-class FileSystemFileStreamReaderTest;
-}
-
-namespace fileapi {
-
-class FileSystemContext;
-
-// Generic FileStreamReader implementation for FileSystem files.
-// Note: This generic implementation would work for any filesystems but
-// remote filesystem should implement its own reader rather than relying
-// on FileSystemOperation::GetSnapshotFile() which may force downloading
-// the entire contents for remote files.
-class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE FileSystemFileStreamReader
- : public NON_EXPORTED_BASE(webkit_blob::FileStreamReader) {
- public:
- virtual ~FileSystemFileStreamReader();
-
- // FileStreamReader overrides.
- virtual int Read(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback) OVERRIDE;
- virtual int64 GetLength(
- const net::Int64CompletionCallback& callback) OVERRIDE;
-
- private:
- friend class webkit_blob::FileStreamReader;
- friend class content::FileSystemFileStreamReaderTest;
-
- FileSystemFileStreamReader(FileSystemContext* file_system_context,
- const FileSystemURL& url,
- int64 initial_offset,
- const base::Time& expected_modification_time);
-
- int CreateSnapshot(const base::Closure& callback,
- const net::CompletionCallback& error_callback);
- void DidCreateSnapshot(
- const base::Closure& callback,
- const net::CompletionCallback& error_callback,
- base::File::Error file_error,
- const base::File::Info& file_info,
- const base::FilePath& platform_path,
- const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
-
- scoped_refptr<FileSystemContext> file_system_context_;
- FileSystemURL url_;
- const int64 initial_offset_;
- const base::Time expected_modification_time_;
- scoped_ptr<webkit_blob::FileStreamReader> local_file_reader_;
- scoped_refptr<webkit_blob::ShareableFileReference> snapshot_ref_;
- bool has_pending_create_snapshot_;
- base::WeakPtrFactory<FileSystemFileStreamReader> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(FileSystemFileStreamReader);
-};
-
-} // namespace fileapi
-
-#endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_FILE_STREAM_READER_H_
« no previous file with comments | « webkit/browser/fileapi/file_system_dir_url_request_job.cc ('k') | webkit/browser/fileapi/file_system_file_stream_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698