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

Side by Side Diff: components/sync/core/simple_metadata_change_list.h

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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef COMPONENTS_SYNC_CORE_SIMPLE_METADATA_CHANGE_LIST_H_ 5 #ifndef COMPONENTS_SYNC_CORE_SIMPLE_METADATA_CHANGE_LIST_H_
6 #define COMPONENTS_SYNC_CORE_SIMPLE_METADATA_CHANGE_LIST_H_ 6 #define COMPONENTS_SYNC_CORE_SIMPLE_METADATA_CHANGE_LIST_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory>
9 #include <string> 10 #include <string>
10 11
11 #include "components/sync/api/metadata_change_list.h" 12 #include "components/sync/api/metadata_change_list.h"
12 #include "components/sync/api/model_type_store.h" 13 #include "components/sync/api/model_type_store.h"
13 #include "components/sync/core/non_blocking_sync_common.h" 14 #include "components/sync/core/non_blocking_sync_common.h"
14 #include "components/sync/protocol/data_type_state.pb.h" 15 #include "components/sync/protocol/data_type_state.pb.h"
15 #include "components/sync/protocol/entity_metadata.pb.h" 16 #include "components/sync/protocol/entity_metadata.pb.h"
16 17
17 namespace syncer { 18 namespace syncer {
18 19
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 ModelTypeStore::WriteBatch* write_batch); 57 ModelTypeStore::WriteBatch* write_batch);
57 58
58 private: 59 private:
59 MetadataChanges metadata_changes_; 60 MetadataChanges metadata_changes_;
60 std::unique_ptr<DataTypeStateChange> state_change_; 61 std::unique_ptr<DataTypeStateChange> state_change_;
61 }; 62 };
62 63
63 } // namespace syncer 64 } // namespace syncer
64 65
65 #endif // COMPONENTS_SYNC_CORE_SIMPLE_METADATA_CHANGE_LIST_H_ 66 #endif // COMPONENTS_SYNC_CORE_SIMPLE_METADATA_CHANGE_LIST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698