| Index: chrome/browser/sync/syncable/directory_manager.cc
|
| diff --git a/chrome/browser/sync/syncable/directory_manager.cc b/chrome/browser/sync/syncable/directory_manager.cc
|
| index 96578c0e8c151c56c12e7cc18e6ca7254c7ec1dd..0719c67f9235b8c9764cbae732f0abadf15e4ffe 100644
|
| --- a/chrome/browser/sync/syncable/directory_manager.cc
|
| +++ b/chrome/browser/sync/syncable/directory_manager.cc
|
| @@ -14,6 +14,8 @@
|
| #include "chrome/browser/sync/syncable/syncable.h"
|
| #include "chrome/common/deprecated/event_sys-inl.h"
|
|
|
| +using browser_sync::Cryptographer;
|
| +
|
| namespace syncable {
|
|
|
| static const FilePath::CharType kSyncDataDatabaseFilename[] =
|
| @@ -37,7 +39,8 @@ const FilePath DirectoryManager::GetSyncDataDatabasePath() const {
|
| DirectoryManager::DirectoryManager(const FilePath& path)
|
| : root_path_(path),
|
| managed_directory_(NULL),
|
| - channel_(new Channel(DirectoryManagerShutdownEvent())) {
|
| + channel_(new Channel(DirectoryManagerShutdownEvent())),
|
| + cryptographer_(new Cryptographer) {
|
| }
|
|
|
| DirectoryManager::~DirectoryManager() {
|
|
|