| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_CYCLE_SYNC_CYCLE_SNAPSHOT_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_CYCLE_SYNC_CYCLE_SNAPSHOT_H_ |
| 6 #define COMPONENTS_SYNC_ENGINE_CYCLE_SYNC_CYCLE_SNAPSHOT_H_ | 6 #define COMPONENTS_SYNC_ENGINE_CYCLE_SYNC_CYCLE_SNAPSHOT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> |
| 10 #include <string> | 11 #include <string> |
| 11 #include <vector> | 12 #include <vector> |
| 12 | 13 |
| 13 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 14 #include "components/sync/base/model_type.h" | 15 #include "components/sync/base/model_type.h" |
| 15 #include "components/sync/base/progress_marker_map.h" | 16 #include "components/sync/base/progress_marker_map.h" |
| 16 #include "components/sync/engine/cycle/model_neutral_state.h" | 17 #include "components/sync/engine/cycle/model_neutral_state.h" |
| 17 | 18 |
| 18 namespace base { | 19 namespace base { |
| 19 class DictionaryValue; | 20 class DictionaryValue; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // now deprecated. We continue to use it in the snapshot because there is | 87 // now deprecated. We continue to use it in the snapshot because there is |
| 87 // still some value in displaying it on the about:sync page. | 88 // still some value in displaying it on the about:sync page. |
| 88 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource legacy_updates_source_; | 89 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource legacy_updates_source_; |
| 89 | 90 |
| 90 bool is_initialized_; | 91 bool is_initialized_; |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 } // namespace syncer | 94 } // namespace syncer |
| 94 | 95 |
| 95 #endif // COMPONENTS_SYNC_ENGINE_CYCLE_SYNC_CYCLE_SNAPSHOT_H_ | 96 #endif // COMPONENTS_SYNC_ENGINE_CYCLE_SYNC_CYCLE_SNAPSHOT_H_ |
| OLD | NEW |