| 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_LOCAL_FILE_SYNC_CONTEXT_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ | 6 #define WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/logging.h" | 16 #include "base/logging.h" |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 20 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
| 21 #include "base/timer/timer.h" | 21 #include "base/timer/timer.h" |
| 22 #include "googleurl/src/gurl.h" | 22 #include "url/gurl.h" |
| 23 #include "webkit/browser/fileapi/syncable/local_file_sync_status.h" | 23 #include "webkit/browser/fileapi/syncable/local_file_sync_status.h" |
| 24 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" | 24 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
| 25 #include "webkit/browser/fileapi/syncable/sync_status_code.h" | 25 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |
| 26 #include "webkit/browser/webkit_storage_browser_export.h" | 26 #include "webkit/browser/webkit_storage_browser_export.h" |
| 27 | 27 |
| 28 namespace base { | 28 namespace base { |
| 29 class SingleThreadTaskRunner; | 29 class SingleThreadTaskRunner; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace fileapi { | 32 namespace fileapi { |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 ObserverList<LocalOriginChangeObserver> origin_change_observers_; | 293 ObserverList<LocalOriginChangeObserver> origin_change_observers_; |
| 294 | 294 |
| 295 int mock_notify_changes_duration_in_sec_; | 295 int mock_notify_changes_duration_in_sec_; |
| 296 | 296 |
| 297 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncContext); | 297 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncContext); |
| 298 }; | 298 }; |
| 299 | 299 |
| 300 } // namespace sync_file_system | 300 } // namespace sync_file_system |
| 301 | 301 |
| 302 #endif // WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ | 302 #endif // WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ |
| OLD | NEW |