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

Side by Side Diff: storage/browser/fileapi/sandbox_file_stream_writer.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed copyright Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ 5 #ifndef STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_
6 #define STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ 6 #define STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_
7 7
8 #include "base/files/file.h" 8 #include "base/files/file.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "storage/browser/blob/shareable_file_reference.h"
11 #include "storage/browser/fileapi/file_stream_writer.h" 12 #include "storage/browser/fileapi/file_stream_writer.h"
12 #include "storage/browser/fileapi/file_system_url.h" 13 #include "storage/browser/fileapi/file_system_url.h"
13 #include "storage/browser/fileapi/task_runner_bound_observer_list.h" 14 #include "storage/browser/fileapi/task_runner_bound_observer_list.h"
14 #include "storage/browser/storage_browser_export.h" 15 #include "storage/browser/storage_browser_export.h"
15 #include "storage/common/blob/shareable_file_reference.h"
16 #include "storage/common/fileapi/file_system_types.h" 16 #include "storage/common/fileapi/file_system_types.h"
17 #include "storage/common/quota/quota_types.h" 17 #include "storage/common/quota/quota_types.h"
18 #include "url/gurl.h" 18 #include "url/gurl.h"
19 19
20 namespace storage { 20 namespace storage {
21 21
22 class FileSystemContext; 22 class FileSystemContext;
23 class FileSystemQuotaUtil; 23 class FileSystemQuotaUtil;
24 class FileStreamWriter; 24 class FileStreamWriter;
25 25
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 int64 default_quota_; 88 int64 default_quota_;
89 89
90 base::WeakPtrFactory<SandboxFileStreamWriter> weak_factory_; 90 base::WeakPtrFactory<SandboxFileStreamWriter> weak_factory_;
91 91
92 DISALLOW_COPY_AND_ASSIGN(SandboxFileStreamWriter); 92 DISALLOW_COPY_AND_ASSIGN(SandboxFileStreamWriter);
93 }; 93 };
94 94
95 } // namespace storage 95 } // namespace storage
96 96
97 #endif // STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ 97 #endif // STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698