| 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_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ |
| 6 #define WEBKIT_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/blob/scoped_file.h" | 12 #include "webkit/blob/scoped_file.h" |
| 13 #include "webkit/fileapi/file_system_operation.h" | 13 #include "webkit/fileapi/file_system_operation.h" |
| 14 #include "webkit/fileapi/file_system_url.h" | 14 #include "webkit/fileapi/file_system_url.h" |
| 15 #include "webkit/fileapi/file_writer_delegate.h" | 15 #include "webkit/fileapi/file_writer_delegate.h" |
| 16 #include "webkit/quota/quota_types.h" | 16 #include "webkit/quota/quota_types.h" |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 | 331 |
| 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_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ | 341 #endif // WEBKIT_BROWSER_FILEAPI_LOCAL_FILE_SYSTEM_OPERATION_H_ |
| OLD | NEW |