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

Side by Side Diff: sync/engine/commit.cc

Issue 864223007: Mechanical rename of tracing includes for /sync (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@trace_ppapi
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | sync/engine/get_updates_processor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "sync/engine/commit.h" 5 #include "sync/engine/commit.h"
6 6
7 #include "base/debug/trace_event.h" 7 #include "base/trace_event/trace_event.h"
8 #include "sync/engine/commit_contribution.h" 8 #include "sync/engine/commit_contribution.h"
9 #include "sync/engine/commit_processor.h" 9 #include "sync/engine/commit_processor.h"
10 #include "sync/engine/commit_util.h" 10 #include "sync/engine/commit_util.h"
11 #include "sync/engine/syncer.h" 11 #include "sync/engine/syncer.h"
12 #include "sync/engine/syncer_proto_util.h" 12 #include "sync/engine/syncer_proto_util.h"
13 #include "sync/internal_api/public/events/commit_request_event.h" 13 #include "sync/internal_api/public/events/commit_request_event.h"
14 #include "sync/internal_api/public/events/commit_response_event.h" 14 #include "sync/internal_api/public/events/commit_response_event.h"
15 #include "sync/sessions/sync_session.h" 15 #include "sync/sessions/sync_session.h"
16 16
17 namespace syncer { 17 namespace syncer {
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 169
170 void Commit::CleanUp() { 170 void Commit::CleanUp() {
171 for (ContributionMap::iterator it = contributions_.begin(); 171 for (ContributionMap::iterator it = contributions_.begin();
172 it != contributions_.end(); ++it) { 172 it != contributions_.end(); ++it) {
173 it->second->CleanUp(); 173 it->second->CleanUp();
174 } 174 }
175 cleaned_up_ = true; 175 cleaned_up_ = true;
176 } 176 }
177 177
178 } // namespace syncer 178 } // namespace syncer
OLDNEW
« no previous file with comments | « no previous file | sync/engine/get_updates_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698