| Index: sync/syncable/directory.cc
|
| diff --git a/sync/syncable/directory.cc b/sync/syncable/directory.cc
|
| index 654519e4b00fca93512ab3dc9ac6cbc26f53b6b2..7c6391b127f2ce46493e7ca90a466e5cf256b163 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 {
|
| @@ -1293,4 +1291,5 @@ ScopedKernelLock::ScopedKernelLock(const Directory* dir)
|
| : scoped_lock_(dir->kernel_->mutex), dir_(const_cast<Directory*>(dir)) {
|
| }
|
|
|
| -}
|
| +} // namespace syncable
|
| +} // namespace syncer
|
|
|