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

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

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: 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 #ifndef COMPONENTS_SYNC_CORE_NON_BLOCKING_SYNC_COMMON_H_ 5 #ifndef COMPONENTS_SYNC_CORE_NON_BLOCKING_SYNC_COMMON_H_
6 #define COMPONENTS_SYNC_CORE_NON_BLOCKING_SYNC_COMMON_H_ 6 #define COMPONENTS_SYNC_CORE_NON_BLOCKING_SYNC_COMMON_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "components/sync/api/entity_data.h" 14 #include "components/sync/api/entity_data.h"
15 #include "components/sync/protocol/sync.pb.h" 15 #include "components/sync/protocol/sync.pb.h"
16 16
17 namespace syncer { 17 namespace syncer_v2 {
18 18
19 static const int64_t kUncommittedVersion = -1; 19 static const int64_t kUncommittedVersion = -1;
20 20
21 struct CommitRequestData { 21 struct CommitRequestData {
22 CommitRequestData(); 22 CommitRequestData();
23 CommitRequestData(const CommitRequestData& other); 23 CommitRequestData(const CommitRequestData& other);
24 ~CommitRequestData(); 24 ~CommitRequestData();
25 25
26 EntityDataPtr entity; 26 EntityDataPtr entity;
27 27
(...skipping 25 matching lines...) Expand all
53 EntityDataPtr entity; 53 EntityDataPtr entity;
54 54
55 int64_t response_version = 0; 55 int64_t response_version = 0;
56 std::string encryption_key_name; 56 std::string encryption_key_name;
57 }; 57 };
58 58
59 typedef std::vector<CommitRequestData> CommitRequestDataList; 59 typedef std::vector<CommitRequestData> CommitRequestDataList;
60 typedef std::vector<CommitResponseData> CommitResponseDataList; 60 typedef std::vector<CommitResponseData> CommitResponseDataList;
61 typedef std::vector<UpdateResponseData> UpdateResponseDataList; 61 typedef std::vector<UpdateResponseData> UpdateResponseDataList;
62 62
63 } // namespace syncer 63 } // namespace syncer_v2
64 64
65 #endif // COMPONENTS_SYNC_CORE_NON_BLOCKING_SYNC_COMMON_H_ 65 #endif // COMPONENTS_SYNC_CORE_NON_BLOCKING_SYNC_COMMON_H_
OLDNEW
« no previous file with comments | « components/sync/core/model_type_store_impl_unittest.cc ('k') | components/sync/core/non_blocking_sync_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698