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 <set> | 9 #include <set> |
9 #include <string> | 10 #include <string> |
10 #include <vector> | 11 #include <vector> |
11 | 12 |
12 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
13 #include "base/file_util.h" | 14 #include "base/file_util.h" |
14 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
15 #include "base/hash_tables.h" | 16 #include "base/hash_tables.h" |
16 #include "sync/base/sync_export.h" | 17 #include "sync/base/sync_export.h" |
17 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" | 18 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 // are deleted in native models as well. | 545 // are deleted in native models as well. |
545 scoped_ptr<DeleteJournal> delete_journal_; | 546 scoped_ptr<DeleteJournal> delete_journal_; |
546 | 547 |
547 DISALLOW_COPY_AND_ASSIGN(Directory); | 548 DISALLOW_COPY_AND_ASSIGN(Directory); |
548 }; | 549 }; |
549 | 550 |
550 } // namespace syncable | 551 } // namespace syncable |
551 } // namespace syncer | 552 } // namespace syncer |
552 | 553 |
553 #endif // SYNC_SYNCABLE_DIRECTORY_H_ | 554 #endif // SYNC_SYNCABLE_DIRECTORY_H_ |
OLD | NEW |