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

Unified Diff: chrome/browser/chromeos/file_manager/snapshot_manager.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/chromeos/file_manager/snapshot_manager.h
diff --git a/chrome/browser/chromeos/file_manager/snapshot_manager.h b/chrome/browser/chromeos/file_manager/snapshot_manager.h
index 157a60091b8aeaf8e08ce7475754c30cae2f19b9..bf6486e4ce66f5f3c1d1c7cff9d5edf280316562 100644
--- a/chrome/browser/chromeos/file_manager/snapshot_manager.h
+++ b/chrome/browser/chromeos/file_manager/snapshot_manager.h
@@ -18,13 +18,13 @@ namespace base {
class FilePath;
} // namespace base
-namespace fileapi {
+namespace storage {
class FileSystemURL;
-} // namespace fileapi
+} // namespace storage
-namespace webkit_blob {
+namespace storage {
class ShareableFileReference;
-} // namespace webkit_blob
+} // namespace storage
namespace file_manager {
@@ -49,17 +49,17 @@ class SnapshotManager {
// computing the necessity of clean up.
struct FileReferenceWithSizeInfo {
FileReferenceWithSizeInfo(
- scoped_refptr<webkit_blob::ShareableFileReference> ref,
+ scoped_refptr<storage::ShareableFileReference> ref,
int64 size);
~FileReferenceWithSizeInfo();
- scoped_refptr<webkit_blob::ShareableFileReference> file_ref;
+ scoped_refptr<storage::ShareableFileReference> file_ref;
int64 file_size;
};
private:
// Part of CreateManagedSnapshot.
void CreateManagedSnapshotAfterSpaceComputed(
- const fileapi::FileSystemURL& filesystem_url,
+ const storage::FileSystemURL& filesystem_url,
const LocalPathCallback& callback,
int64 needed_space);
@@ -69,7 +69,7 @@ class SnapshotManager {
base::File::Error result,
const base::File::Info& file_info,
const base::FilePath& platform_path,
- const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
+ const scoped_refptr<storage::ShareableFileReference>& file_ref);
Profile* profile_;
std::deque<FileReferenceWithSizeInfo> file_refs_;
« no previous file with comments | « chrome/browser/chromeos/file_manager/open_util.cc ('k') | chrome/browser/chromeos/file_manager/snapshot_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698