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_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/time.h" | 10 #include "base/time/time.h" |
11 #include "sync/base/sync_export.h" | 11 #include "sync/base/sync_export.h" |
12 #include "sync/internal_api/public/base/model_type.h" | 12 #include "sync/internal_api/public/base/model_type.h" |
13 #include "sync/internal_api/public/sync_encryption_handler.h" | 13 #include "sync/internal_api/public/sync_encryption_handler.h" |
14 #include "sync/protocol/sync_protocol_error.h" | 14 #include "sync/protocol/sync_protocol_error.h" |
15 | 15 |
16 namespace syncer { | 16 namespace syncer { |
17 | 17 |
18 // Status encapsulates detailed state about the internals of the SyncManager. | 18 // Status encapsulates detailed state about the internals of the SyncManager. |
19 // | 19 // |
20 // This struct is closely tied to the AllStatus object which uses instances of | 20 // This struct is closely tied to the AllStatus object which uses instances of |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 std::vector<int> num_entries_by_type; | 103 std::vector<int> num_entries_by_type; |
104 std::vector<int> num_to_delete_entries_by_type; | 104 std::vector<int> num_to_delete_entries_by_type; |
105 | 105 |
106 // Time of next retry if sync scheduler is throttled or in backoff. | 106 // Time of next retry if sync scheduler is throttled or in backoff. |
107 base::Time retry_time; | 107 base::Time retry_time; |
108 }; | 108 }; |
109 | 109 |
110 } // namespace syncer | 110 } // namespace syncer |
111 | 111 |
112 #endif // SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ | 112 #endif // SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ |
OLD | NEW |