OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This used to do a lot of TLS-based management of multiple Directory objects. | 5 // This used to do a lot of TLS-based management of multiple Directory objects. |
6 // We now can access Directory objects from any thread for general purpose | 6 // We now can access Directory objects from any thread for general purpose |
7 // operations and we only ever have one Directory, so this class isn't doing | 7 // operations and we only ever have one Directory, so this class isn't doing |
8 // anything too fancy besides keeping calling and access conventions the same | 8 // anything too fancy besides keeping calling and access conventions the same |
9 // for now. | 9 // for now. |
10 // TODO(timsteele): We can probably nuke this entire class and use raw | 10 // TODO(timsteele): We can probably nuke this entire class and use raw |
11 // Directory objects everywhere. | 11 // Directory objects everywhere. |
12 #ifndef CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_MANAGER_H_ | 12 #ifndef CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_MANAGER_H_ |
13 #define CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_MANAGER_H_ | 13 #define CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_MANAGER_H_ |
14 #pragma once | 14 #pragma once |
15 | 15 |
16 #include <string> | 16 #include <string> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "base/basictypes.h" | 19 #include "base/basictypes.h" |
20 #include "base/file_path.h" | 20 #include "base/file_path.h" |
21 #include "base/synchronization/lock.h" | 21 #include "base/synchronization/lock.h" |
22 #include "chrome/browser/sync/syncable/dir_open_result.h" | 22 #include "chrome/browser/sync/syncable/dir_open_result.h" |
23 #include "chrome/browser/sync/syncable/syncable.h" | 23 #include "chrome/browser/sync/syncable/syncable.h" |
24 #include "chrome/browser/sync/util/cryptographer.h" | 24 #include "chrome/browser/sync/encryption/cryptographer.h" |
25 | 25 |
26 namespace sync_api { class BaseTransaction; } | 26 namespace sync_api { class BaseTransaction; } |
27 namespace syncable { class BaseTransaction; } | 27 namespace syncable { class BaseTransaction; } |
28 | 28 |
29 namespace syncable { | 29 namespace syncable { |
30 | 30 |
31 class DirectoryChangeDelegate; | 31 class DirectoryChangeDelegate; |
32 | 32 |
33 class DirectoryManager { | 33 class DirectoryManager { |
34 public: | 34 public: |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 bool good_; | 113 bool good_; |
114 // Ensure that the programmer checks good before using the ScopedDirLookup. | 114 // Ensure that the programmer checks good before using the ScopedDirLookup. |
115 // This member should can be removed if it ever shows up in profiling | 115 // This member should can be removed if it ever shows up in profiling |
116 bool good_checked_; | 116 bool good_checked_; |
117 DirectoryManager* const dirman_; | 117 DirectoryManager* const dirman_; |
118 }; | 118 }; |
119 | 119 |
120 } // namespace syncable | 120 } // namespace syncable |
121 | 121 |
122 #endif // CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_MANAGER_H_ | 122 #endif // CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_MANAGER_H_ |
OLD | NEW |