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_LOCAL_FILE_SYNC_STATUS_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_STATUS_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_STATUS_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_STATUS_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
15 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
16 #include "webkit/browser/fileapi/file_system_url.h" | 16 #include "storage/browser/fileapi/file_system_url.h" |
17 | 17 |
18 namespace storage { | 18 namespace storage { |
19 class FileSystemURL; | 19 class FileSystemURL; |
20 } | 20 } |
21 | 21 |
22 namespace sync_file_system { | 22 namespace sync_file_system { |
23 | 23 |
24 // Represents local file sync status. | 24 // Represents local file sync status. |
25 // This class is supposed to run only on IO thread. | 25 // This class is supposed to run only on IO thread. |
26 // | 26 // |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 URLSet syncing_; | 96 URLSet syncing_; |
97 | 97 |
98 ObserverList<Observer> observer_list_; | 98 ObserverList<Observer> observer_list_; |
99 | 99 |
100 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncStatus); | 100 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncStatus); |
101 }; | 101 }; |
102 | 102 |
103 } // namespace sync_file_system | 103 } // namespace sync_file_system |
104 | 104 |
105 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_STATUS_H_ | 105 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_STATUS_H_ |
OLD | NEW |