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_LOCAL_FILE_SYSTEM_OPERATION_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ |
6 #define WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ | 6 #define WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "webkit/browser/fileapi/file_system_operation.h" | 12 #include "webkit/browser/fileapi/file_system_operation.h" |
13 #include "webkit/browser/fileapi/file_system_url.h" | 13 #include "webkit/browser/fileapi/file_system_url.h" |
14 #include "webkit/browser/fileapi/file_writer_delegate.h" | 14 #include "webkit/browser/fileapi/file_writer_delegate.h" |
15 #include "webkit/common/blob/scoped_file.h" | 15 #include "webkit/common/blob/scoped_file.h" |
16 #include "webkit/quota/quota_types.h" | 16 #include "webkit/common/quota/quota_types.h" |
17 #include "webkit/storage/webkit_storage_export.h" | 17 #include "webkit/storage/webkit_storage_export.h" |
18 | 18 |
19 namespace chromeos { | 19 namespace chromeos { |
20 class CrosMountPointProvider; | 20 class CrosMountPointProvider; |
21 } | 21 } |
22 | 22 |
23 namespace sync_file_system { | 23 namespace sync_file_system { |
24 class SyncableFileSystemOperation; | 24 class SyncableFileSystemOperation; |
25 } | 25 } |
26 | 26 |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 // LocalFileSystemOperation instance is usually deleted upon completion but | 332 // LocalFileSystemOperation instance is usually deleted upon completion but |
333 // could be deleted while it has inflight callbacks when Cancel is called. | 333 // could be deleted while it has inflight callbacks when Cancel is called. |
334 base::WeakPtrFactory<LocalFileSystemOperation> weak_factory_; | 334 base::WeakPtrFactory<LocalFileSystemOperation> weak_factory_; |
335 | 335 |
336 DISALLOW_COPY_AND_ASSIGN(LocalFileSystemOperation); | 336 DISALLOW_COPY_AND_ASSIGN(LocalFileSystemOperation); |
337 }; | 337 }; |
338 | 338 |
339 } // namespace fileapi | 339 } // namespace fileapi |
340 | 340 |
341 #endif // WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ | 341 #endif // WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ |
OLD | NEW |