Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: components/sync/engine_impl/commit.cc

Issue 2373523003: Clean up sparse_histogram.h header (Closed)
Patch Set: Rebase update on Oct 18 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <utility> 7 #include <utility>
8 8
9 #include "base/metrics/sparse_histogram.h" 9 #include "base/metrics/histogram_macros.h"
10 #include "base/trace_event/trace_event.h" 10 #include "base/trace_event/trace_event.h"
11 #include "components/sync/base/data_type_histogram.h" 11 #include "components/sync/base/data_type_histogram.h"
12 #include "components/sync/engine/events/commit_request_event.h" 12 #include "components/sync/engine/events/commit_request_event.h"
13 #include "components/sync/engine/events/commit_response_event.h" 13 #include "components/sync/engine/events/commit_response_event.h"
14 #include "components/sync/engine_impl/commit_processor.h" 14 #include "components/sync/engine_impl/commit_processor.h"
15 #include "components/sync/engine_impl/commit_util.h" 15 #include "components/sync/engine_impl/commit_util.h"
16 #include "components/sync/engine_impl/cycle/sync_cycle.h" 16 #include "components/sync/engine_impl/cycle/sync_cycle.h"
17 #include "components/sync/engine_impl/syncer.h" 17 #include "components/sync/engine_impl/syncer.h"
18 #include "components/sync/engine_impl/syncer_proto_util.h" 18 #include "components/sync/engine_impl/syncer_proto_util.h"
19 19
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 175
176 void Commit::CleanUp() { 176 void Commit::CleanUp() {
177 for (ContributionMap::const_iterator it = contributions_.begin(); 177 for (ContributionMap::const_iterator it = contributions_.begin();
178 it != contributions_.end(); ++it) { 178 it != contributions_.end(); ++it) {
179 it->second->CleanUp(); 179 it->second->CleanUp();
180 } 180 }
181 cleaned_up_ = true; 181 cleaned_up_ = true;
182 } 182 }
183 183
184 } // namespace syncer 184 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698