| 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 COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ |
| 6 #define COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ | 6 #define COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 89 |
| 90 // The unique identifier for the invalidation client. | 90 // The unique identifier for the invalidation client. |
| 91 std::string invalidator_client_id; | 91 std::string invalidator_client_id; |
| 92 | 92 |
| 93 // Counters grouped by model type | 93 // Counters grouped by model type |
| 94 std::vector<int> num_entries_by_type; | 94 std::vector<int> num_entries_by_type; |
| 95 std::vector<int> num_to_delete_entries_by_type; | 95 std::vector<int> num_to_delete_entries_by_type; |
| 96 | 96 |
| 97 // Time of next retry if sync scheduler is throttled or in backoff. | 97 // Time of next retry if sync scheduler is throttled or in backoff. |
| 98 base::Time retry_time; | 98 base::Time retry_time; |
| 99 |
| 100 // The location of the local sync backend db file if local sync is enabled. |
| 101 std::string local_sync_folder; |
| 99 }; | 102 }; |
| 100 | 103 |
| 101 } // namespace syncer | 104 } // namespace syncer |
| 102 | 105 |
| 103 #endif // COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ | 106 #endif // COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ |
| OLD | NEW |