| 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 WEBKIT_BROWSER_FILEAPI_SYNCABLE_CANNED_SYNCABLE_FILE_SYSTEM_H_ |    5 #ifndef WEBKIT_BROWSER_FILEAPI_SYNCABLE_CANNED_SYNCABLE_FILE_SYSTEM_H_ | 
|    6 #define WEBKIT_BROWSER_FILEAPI_SYNCABLE_CANNED_SYNCABLE_FILE_SYSTEM_H_ |    6 #define WEBKIT_BROWSER_FILEAPI_SYNCABLE_CANNED_SYNCABLE_FILE_SYSTEM_H_ | 
|    7  |    7  | 
|    8 #include <string> |    8 #include <string> | 
|    9 #include <vector> |    9 #include <vector> | 
|   10  |   10  | 
|   11 #include "base/callback_forward.h" |   11 #include "base/callback_forward.h" | 
|   12 #include "base/files/scoped_temp_dir.h" |   12 #include "base/files/scoped_temp_dir.h" | 
|   13 #include "base/message_loop.h" |   13 #include "base/message_loop/message_loop.h" | 
|   14 #include "base/observer_list_threadsafe.h" |   14 #include "base/observer_list_threadsafe.h" | 
|   15 #include "base/platform_file.h" |   15 #include "base/platform_file.h" | 
|   16 #include "webkit/browser/fileapi/file_system_operation.h" |   16 #include "webkit/browser/fileapi/file_system_operation.h" | 
|   17 #include "webkit/browser/fileapi/file_system_url.h" |   17 #include "webkit/browser/fileapi/file_system_url.h" | 
|   18 #include "webkit/browser/fileapi/syncable/local_file_sync_status.h" |   18 #include "webkit/browser/fileapi/syncable/local_file_sync_status.h" | 
|   19 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |   19 #include "webkit/browser/fileapi/syncable/sync_status_code.h" | 
|   20 #include "webkit/browser/quota/quota_callbacks.h" |   20 #include "webkit/browser/quota/quota_callbacks.h" | 
|   21 #include "webkit/common/fileapi/file_system_types.h" |   21 #include "webkit/common/fileapi/file_system_types.h" | 
|   22 #include "webkit/common/fileapi/file_system_util.h" |   22 #include "webkit/common/fileapi/file_system_util.h" | 
|   23 #include "webkit/common/quota/quota_types.h" |   23 #include "webkit/common/quota/quota_types.h" | 
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  221   bool is_filesystem_opened_; |  221   bool is_filesystem_opened_; | 
|  222  |  222  | 
|  223   scoped_refptr<ObserverList> sync_status_observers_; |  223   scoped_refptr<ObserverList> sync_status_observers_; | 
|  224  |  224  | 
|  225   DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); |  225   DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); | 
|  226 }; |  226 }; | 
|  227  |  227  | 
|  228 }  // namespace sync_file_system |  228 }  // namespace sync_file_system | 
|  229  |  229  | 
|  230 #endif  // WEBKIT_BROWSER_FILEAPI_SYNCABLE_CANNED_SYNCABLE_FILE_SYSTEM_H_ |  230 #endif  // WEBKIT_BROWSER_FILEAPI_SYNCABLE_CANNED_SYNCABLE_FILE_SYSTEM_H_ | 
| OLD | NEW |