| Index: sync/syncable/directory.cc
|
| diff --git a/sync/syncable/directory.cc b/sync/syncable/directory.cc
|
| index 1b515f8d8d543c78cfe7654a69038958b737e332..2bcc87669d3bc1a8d0390e99d355e04b748e8d28 100644
|
| --- a/sync/syncable/directory.cc
|
| +++ b/sync/syncable/directory.cc
|
| @@ -21,11 +21,9 @@
|
| #include "sync/syncable/syncable_util.h"
|
| #include "sync/syncable/write_transaction.h"
|
|
|
| -using syncer::Encryptor;
|
| -using syncer::ReportUnrecoverableErrorFunction;
|
| -using syncer::UnrecoverableErrorHandler;
|
| using std::string;
|
|
|
| +namespace syncer {
|
| namespace syncable {
|
|
|
| namespace {
|
| @@ -1318,4 +1316,5 @@ ScopedKernelLock::ScopedKernelLock(const Directory* dir)
|
| : scoped_lock_(dir->kernel_->mutex), dir_(const_cast<Directory*>(dir)) {
|
| }
|
|
|
| -}
|
| +} // namespace syncable
|
| +} // namespace syncer
|
|
|