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 CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_METADATA_STORE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_METADATA_STORE_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_METADATA_STORE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_METADATA_STORE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/threading/non_thread_safe.h" | 18 #include "base/threading/non_thread_safe.h" |
19 #include "webkit/browser/fileapi/file_system_url.h" | 19 #include "webkit/browser/fileapi/file_system_url.h" |
20 #include "webkit/fileapi/syncable/sync_callbacks.h" | 20 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
21 #include "webkit/fileapi/syncable/sync_status_code.h" | 21 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class SequencedTaskRunner; | 24 class SequencedTaskRunner; |
25 } | 25 } |
26 | 26 |
27 class GURL; | 27 class GURL; |
28 | 28 |
29 namespace sync_file_system { | 29 namespace sync_file_system { |
30 | 30 |
31 class DriveMetadata; | 31 class DriveMetadata; |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 ResourceIdByOrigin disabled_origins_; | 198 ResourceIdByOrigin disabled_origins_; |
199 | 199 |
200 OriginByResourceId origin_by_resource_id_; | 200 OriginByResourceId origin_by_resource_id_; |
201 | 201 |
202 DISALLOW_COPY_AND_ASSIGN(DriveMetadataStore); | 202 DISALLOW_COPY_AND_ASSIGN(DriveMetadataStore); |
203 }; | 203 }; |
204 | 204 |
205 } // namespace sync_file_system | 205 } // namespace sync_file_system |
206 | 206 |
207 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_METADATA_STORE_H_ | 207 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_METADATA_STORE_H_ |
OLD | NEW |