Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "sync/engine/non_blocking_sync_common.h" | 5 #include "sync/engine/non_blocking_sync_common.h" |
| 6 | 6 |
| 7 namespace syncer { | 7 namespace syncer { |
| 8 | 8 |
| 9 DataTypeState::DataTypeState() { | 9 DataTypeState::DataTypeState() : next_client_id(0), initial_sync_done(false) { |
| 10 } | 10 } |
| 11 | 11 |
| 12 DataTypeState::~DataTypeState() { | 12 DataTypeState::~DataTypeState() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 CommitRequestData::CommitRequestData() { | 15 CommitRequestData::CommitRequestData() { |
|
Nicolas Zea
2014/06/02 20:27:17
I just realized all the ints and bools for these s
rlarocque
2014/06/02 21:39:14
I wasn't too concerned about it, but I suppose it
| |
| 16 } | 16 } |
| 17 | 17 |
| 18 CommitRequestData::~CommitRequestData() { | 18 CommitRequestData::~CommitRequestData() { |
| 19 } | 19 } |
| 20 | 20 |
| 21 CommitResponseData::CommitResponseData() { | 21 CommitResponseData::CommitResponseData() { |
| 22 } | 22 } |
| 23 | 23 |
| 24 CommitResponseData::~CommitResponseData() { | 24 CommitResponseData::~CommitResponseData() { |
| 25 } | 25 } |
| 26 | 26 |
| 27 UpdateResponseData::UpdateResponseData() { | 27 UpdateResponseData::UpdateResponseData() { |
| 28 } | 28 } |
| 29 | 29 |
| 30 UpdateResponseData::~UpdateResponseData() { | 30 UpdateResponseData::~UpdateResponseData() { |
| 31 } | 31 } |
| 32 | 32 |
| 33 } // namespace syncer | 33 } // namespace syncer |
| OLD | NEW |