| 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 #include "components/sync/engine_impl/commit.h" | 5 #include "components/sync/engine_impl/commit.h" |
| 6 | 6 |
| 7 #include "base/metrics/sparse_histogram.h" | 7 #include "base/metrics/histogram_macros.h" |
| 8 #include "base/trace_event/trace_event.h" | 8 #include "base/trace_event/trace_event.h" |
| 9 #include "components/sync/base/data_type_histogram.h" | 9 #include "components/sync/base/data_type_histogram.h" |
| 10 #include "components/sync/engine/events/commit_request_event.h" | 10 #include "components/sync/engine/events/commit_request_event.h" |
| 11 #include "components/sync/engine/events/commit_response_event.h" | 11 #include "components/sync/engine/events/commit_response_event.h" |
| 12 #include "components/sync/engine_impl/commit_processor.h" | 12 #include "components/sync/engine_impl/commit_processor.h" |
| 13 #include "components/sync/engine_impl/commit_util.h" | 13 #include "components/sync/engine_impl/commit_util.h" |
| 14 #include "components/sync/engine_impl/cycle/sync_cycle.h" | 14 #include "components/sync/engine_impl/cycle/sync_cycle.h" |
| 15 #include "components/sync/engine_impl/syncer.h" | 15 #include "components/sync/engine_impl/syncer.h" |
| 16 #include "components/sync/engine_impl/syncer_proto_util.h" | 16 #include "components/sync/engine_impl/syncer_proto_util.h" |
| 17 | 17 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 173 |
| 174 void Commit::CleanUp() { | 174 void Commit::CleanUp() { |
| 175 for (ContributionMap::const_iterator it = contributions_.begin(); | 175 for (ContributionMap::const_iterator it = contributions_.begin(); |
| 176 it != contributions_.end(); ++it) { | 176 it != contributions_.end(); ++it) { |
| 177 it->second->CleanUp(); | 177 it->second->CleanUp(); |
| 178 } | 178 } |
| 179 cleaned_up_ = true; | 179 cleaned_up_ = true; |
| 180 } | 180 } |
| 181 | 181 |
| 182 } // namespace syncer | 182 } // namespace syncer |
| OLD | NEW |