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

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

Issue 2389063002: [Sync] Fixing easy lint violations. (Closed)
Patch Set: Updated for Max's comments. 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 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 "components/sync/engine_impl/commit_processor.h" 5 #include "components/sync/engine_impl/commit_processor.h"
6 6
7 #include <memory>
7 #include <utility> 8 #include <utility>
8 9
9 #include "base/metrics/histogram_macros.h" 10 #include "base/metrics/histogram_macros.h"
10 #include "components/sync/engine_impl/commit_contribution.h" 11 #include "components/sync/engine_impl/commit_contribution.h"
11 #include "components/sync/engine_impl/commit_contributor.h" 12 #include "components/sync/engine_impl/commit_contributor.h"
12 #include "components/sync/protocol/sync.pb.h" 13 #include "components/sync/protocol/sync.pb.h"
13 14
14 namespace syncer { 15 namespace syncer {
15 16
16 typedef std::map<ModelType, size_t> TypeToIndexMap; 17 typedef std::map<ModelType, size_t> TypeToIndexMap;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 } 54 }
54 if (num_entries >= max_entries) { 55 if (num_entries >= max_entries) {
55 DCHECK_EQ(num_entries, max_entries) 56 DCHECK_EQ(num_entries, max_entries)
56 << "Number of commit entries exceeeds maximum"; 57 << "Number of commit entries exceeeds maximum";
57 break; 58 break;
58 } 59 }
59 } 60 }
60 } 61 }
61 62
62 } // namespace syncer 63 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/engine_impl/commit.cc ('k') | components/sync/engine_impl/get_updates_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698