| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "storage/browser/blob/blob_data_handle.h" | 21 #include "storage/browser/blob/blob_data_handle.h" |
| 22 #include "storage/browser/fileapi/file_system_operation.h" | 22 #include "storage/browser/fileapi/file_system_operation.h" |
| 23 #include "storage/browser/fileapi/file_system_url.h" | 23 #include "storage/browser/fileapi/file_system_url.h" |
| 24 #include "storage/browser/quota/quota_callbacks.h" | 24 #include "storage/browser/quota/quota_callbacks.h" |
| 25 #include "storage/common/fileapi/file_system_types.h" | 25 #include "storage/common/fileapi/file_system_types.h" |
| 26 #include "storage/common/fileapi/file_system_util.h" | 26 #include "storage/common/fileapi/file_system_util.h" |
| 27 #include "storage/common/quota/quota_types.h" | 27 #include "storage/common/quota/quota_types.h" |
| 28 | 28 |
| 29 namespace base { | 29 namespace base { |
| 30 class SingleThreadTaskRunner; | 30 class SingleThreadTaskRunner; |
| 31 class Thread; | |
| 32 } | 31 } |
| 33 | 32 |
| 34 namespace storage { | 33 namespace storage { |
| 35 class FileSystemContext; | 34 class FileSystemContext; |
| 36 class FileSystemOperationRunner; | 35 class FileSystemOperationRunner; |
| 37 class FileSystemURL; | 36 class FileSystemURL; |
| 38 } | 37 } |
| 39 | 38 |
| 40 namespace leveldb { | 39 namespace leveldb { |
| 41 class Env; | 40 class Env; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 bool is_filesystem_opened_; // Should be accessed only on the IO thread. | 250 bool is_filesystem_opened_; // Should be accessed only on the IO thread. |
| 252 | 251 |
| 253 scoped_refptr<ObserverList> sync_status_observers_; | 252 scoped_refptr<ObserverList> sync_status_observers_; |
| 254 | 253 |
| 255 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); | 254 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); |
| 256 }; | 255 }; |
| 257 | 256 |
| 258 } // namespace sync_file_system | 257 } // namespace sync_file_system |
| 259 | 258 |
| 260 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ | 259 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ |
| OLD | NEW |