| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 SYNC_SYNCABLE_DIRECTORY_H_ | 5 #ifndef SYNC_SYNCABLE_DIRECTORY_H_ |
| 6 #define SYNC_SYNCABLE_DIRECTORY_H_ | 6 #define SYNC_SYNCABLE_DIRECTORY_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/containers/hash_tables.h" | 14 #include "base/containers/hash_tables.h" |
| 15 #include "base/file_util.h" | 15 #include "base/files/file_util.h" |
| 16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "sync/base/sync_export.h" | 18 #include "sync/base/sync_export.h" |
| 19 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" | 19 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" |
| 20 #include "sync/internal_api/public/util/weak_handle.h" | 20 #include "sync/internal_api/public/util/weak_handle.h" |
| 21 #include "sync/syncable/dir_open_result.h" | 21 #include "sync/syncable/dir_open_result.h" |
| 22 #include "sync/syncable/entry.h" | 22 #include "sync/syncable/entry.h" |
| 23 #include "sync/syncable/entry_kernel.h" | 23 #include "sync/syncable/entry_kernel.h" |
| 24 #include "sync/syncable/metahandle_set.h" | 24 #include "sync/syncable/metahandle_set.h" |
| 25 #include "sync/syncable/parent_child_index.h" | 25 #include "sync/syncable/parent_child_index.h" |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 // are deleted in native models as well. | 621 // are deleted in native models as well. |
| 622 scoped_ptr<DeleteJournal> delete_journal_; | 622 scoped_ptr<DeleteJournal> delete_journal_; |
| 623 | 623 |
| 624 DISALLOW_COPY_AND_ASSIGN(Directory); | 624 DISALLOW_COPY_AND_ASSIGN(Directory); |
| 625 }; | 625 }; |
| 626 | 626 |
| 627 } // namespace syncable | 627 } // namespace syncable |
| 628 } // namespace syncer | 628 } // namespace syncer |
| 629 | 629 |
| 630 #endif // SYNC_SYNCABLE_DIRECTORY_H_ | 630 #endif // SYNC_SYNCABLE_DIRECTORY_H_ |
| OLD | NEW |