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/file_util.h" | 15 #include "base/file_util.h" |
15 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
16 #include "base/hash_tables.h" | |
17 #include "sync/base/sync_export.h" | 17 #include "sync/base/sync_export.h" |
18 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" | 18 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" |
19 #include "sync/internal_api/public/util/weak_handle.h" | 19 #include "sync/internal_api/public/util/weak_handle.h" |
20 #include "sync/syncable/dir_open_result.h" | 20 #include "sync/syncable/dir_open_result.h" |
21 #include "sync/syncable/entry_kernel.h" | 21 #include "sync/syncable/entry_kernel.h" |
22 #include "sync/syncable/metahandle_set.h" | 22 #include "sync/syncable/metahandle_set.h" |
23 #include "sync/syncable/parent_child_index.h" | 23 #include "sync/syncable/parent_child_index.h" |
24 #include "sync/syncable/syncable_delete_journal.h" | 24 #include "sync/syncable/syncable_delete_journal.h" |
25 | 25 |
26 namespace syncer { | 26 namespace syncer { |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 // are deleted in native models as well. | 545 // are deleted in native models as well. |
546 scoped_ptr<DeleteJournal> delete_journal_; | 546 scoped_ptr<DeleteJournal> delete_journal_; |
547 | 547 |
548 DISALLOW_COPY_AND_ASSIGN(Directory); | 548 DISALLOW_COPY_AND_ASSIGN(Directory); |
549 }; | 549 }; |
550 | 550 |
551 } // namespace syncable | 551 } // namespace syncable |
552 } // namespace syncer | 552 } // namespace syncer |
553 | 553 |
554 #endif // SYNC_SYNCABLE_DIRECTORY_H_ | 554 #endif // SYNC_SYNCABLE_DIRECTORY_H_ |
OLD | NEW |