| OLD | NEW |
| 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 WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ | 6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
| 12 #include "webkit/browser/fileapi/task_runner_bound_observer_list.h" |
| 12 #include "webkit/fileapi/file_stream_writer.h" | 13 #include "webkit/fileapi/file_stream_writer.h" |
| 13 #include "webkit/fileapi/file_system_types.h" | 14 #include "webkit/fileapi/file_system_types.h" |
| 14 #include "webkit/fileapi/file_system_url.h" | 15 #include "webkit/fileapi/file_system_url.h" |
| 15 #include "webkit/fileapi/task_runner_bound_observer_list.h" | |
| 16 #include "webkit/quota/quota_types.h" | 16 #include "webkit/quota/quota_types.h" |
| 17 #include "webkit/storage/webkit_storage_export.h" | 17 #include "webkit/storage/webkit_storage_export.h" |
| 18 | 18 |
| 19 namespace fileapi { | 19 namespace fileapi { |
| 20 | 20 |
| 21 class FileSystemContext; | 21 class FileSystemContext; |
| 22 class FileSystemQuotaUtil; | 22 class FileSystemQuotaUtil; |
| 23 class LocalFileStreamWriter; | 23 class LocalFileStreamWriter; |
| 24 | 24 |
| 25 class WEBKIT_STORAGE_EXPORT_PRIVATE SandboxFileStreamWriter | 25 class WEBKIT_STORAGE_EXPORT_PRIVATE SandboxFileStreamWriter |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 int64 default_quota_; | 83 int64 default_quota_; |
| 84 | 84 |
| 85 base::WeakPtrFactory<SandboxFileStreamWriter> weak_factory_; | 85 base::WeakPtrFactory<SandboxFileStreamWriter> weak_factory_; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(SandboxFileStreamWriter); | 87 DISALLOW_COPY_AND_ASSIGN(SandboxFileStreamWriter); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace fileapi | 90 } // namespace fileapi |
| 91 | 91 |
| 92 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ | 92 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_ |
| OLD | NEW |