| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" | 15 #include "sync/internal_api/public/util/report_unrecoverable_error_function.h" |
| 16 #include "sync/internal_api/public/util/weak_handle.h" | 16 #include "sync/internal_api/public/util/weak_handle.h" |
| 17 #include "sync/syncable/dir_open_result.h" | 17 #include "sync/syncable/dir_open_result.h" |
| 18 #include "sync/syncable/entry_kernel.h" | 18 #include "sync/syncable/entry_kernel.h" |
| 19 #include "sync/syncable/metahandle_set.h" | 19 #include "sync/syncable/metahandle_set.h" |
| 20 #include "sync/syncable/scoped_kernel_lock.h" | 20 #include "sync/syncable/scoped_kernel_lock.h" |
| 21 #include "sync/util/cryptographer.h" | 21 #include "sync/util/cryptographer.h" |
| 22 | 22 |
| 23 namespace syncer { | 23 namespace syncer { |
| 24 |
| 24 class Encryptor; | 25 class Encryptor; |
| 25 class UnrecoverableErrorHandler; | 26 class UnrecoverableErrorHandler; |
| 26 } | |
| 27 | 27 |
| 28 namespace syncable { | 28 namespace syncable { |
| 29 | 29 |
| 30 class DirectoryChangeDelegate; | 30 class DirectoryChangeDelegate; |
| 31 class TransactionObserver; | 31 class TransactionObserver; |
| 32 class BaseTransaction; | 32 class BaseTransaction; |
| 33 class WriteTransaction; | 33 class WriteTransaction; |
| 34 class ScopedKernelLock; | 34 class ScopedKernelLock; |
| 35 class DirectoryBackingStore; | 35 class DirectoryBackingStore; |
| 36 class IdFilter; | 36 class IdFilter; |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 | 610 |
| 611 syncer::UnrecoverableErrorHandler* const unrecoverable_error_handler_; | 611 syncer::UnrecoverableErrorHandler* const unrecoverable_error_handler_; |
| 612 const syncer::ReportUnrecoverableErrorFunction | 612 const syncer::ReportUnrecoverableErrorFunction |
| 613 report_unrecoverable_error_function_; | 613 report_unrecoverable_error_function_; |
| 614 bool unrecoverable_error_set_; | 614 bool unrecoverable_error_set_; |
| 615 | 615 |
| 616 InvariantCheckLevel invariant_check_level_; | 616 InvariantCheckLevel invariant_check_level_; |
| 617 }; | 617 }; |
| 618 | 618 |
| 619 } // namespace syncable | 619 } // namespace syncable |
| 620 } // namespace syncer |
| 620 | 621 |
| 621 #endif // SYNC_SYNCABLE_DIRECTORY_H_ | 622 #endif // SYNC_SYNCABLE_DIRECTORY_H_ |
| OLD | NEW |