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_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ |
6 #define WEBKIT_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.h" | 21 #include "base/timer.h" |
22 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
23 #include "webkit/fileapi/syncable/local_file_sync_status.h" | 23 #include "webkit/browser/fileapi/syncable/local_file_sync_status.h" |
24 #include "webkit/fileapi/syncable/sync_callbacks.h" | 24 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
25 #include "webkit/fileapi/syncable/sync_status_code.h" | 25 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |
26 #include "webkit/storage/webkit_storage_export.h" | 26 #include "webkit/storage/webkit_storage_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 { |
33 class FileSystemContext; | 33 class FileSystemContext; |
34 class FileSystemURL; | 34 class FileSystemURL; |
35 } | 35 } |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 | 296 |
297 ObserverList<LocalOriginChangeObserver> origin_change_observers_; | 297 ObserverList<LocalOriginChangeObserver> origin_change_observers_; |
298 | 298 |
299 int mock_notify_changes_duration_in_sec_; | 299 int mock_notify_changes_duration_in_sec_; |
300 | 300 |
301 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncContext); | 301 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncContext); |
302 }; | 302 }; |
303 | 303 |
304 } // namespace sync_file_system | 304 } // namespace sync_file_system |
305 | 305 |
306 #endif // WEBKIT_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ | 306 #endif // WEBKIT_BROWSER_FILEAPI_SYNCABLE_LOCAL_FILE_SYNC_CONTEXT_H_ |
OLD | NEW |