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

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

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. 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
« no previous file with comments | « components/sync/core/DEPS ('k') | components/sync/core/data_batch_impl.h » ('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 #ifndef COMPONENTS_SYNC_CORE_BASE_NODE_H_ 5 #ifndef COMPONENTS_SYNC_CORE_BASE_NODE_H_
6 #define COMPONENTS_SYNC_CORE_BASE_NODE_H_ 6 #define COMPONENTS_SYNC_CORE_BASE_NODE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/gtest_prod_util.h" 15 #include "base/gtest_prod_util.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/time/time.h" 17 #include "base/time/time.h"
18 #include "components/sync/api/attachments/attachment.h"
19 #include "components/sync/base/model_type.h" 18 #include "components/sync/base/model_type.h"
19 #include "components/sync/model/attachments/attachment.h"
20 #include "components/sync/protocol/sync.pb.h" 20 #include "components/sync/protocol/sync.pb.h"
21 #include "url/gurl.h" 21 #include "url/gurl.h"
22 22
23 // Forward declarations of internal class types so that sync API objects 23 // Forward declarations of internal class types so that sync API objects
24 // may have opaque pointers to these types. 24 // may have opaque pointers to these types.
25 namespace base { 25 namespace base {
26 class DictionaryValue; 26 class DictionaryValue;
27 } 27 }
28 28
29 namespace sync_pb { 29 namespace sync_pb {
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 234
235 // Same as |unencrypted_data_|, but for legacy password encryption. 235 // Same as |unencrypted_data_|, but for legacy password encryption.
236 std::unique_ptr<sync_pb::PasswordSpecificsData> password_data_; 236 std::unique_ptr<sync_pb::PasswordSpecificsData> password_data_;
237 237
238 DISALLOW_COPY_AND_ASSIGN(BaseNode); 238 DISALLOW_COPY_AND_ASSIGN(BaseNode);
239 }; 239 };
240 240
241 } // namespace syncer 241 } // namespace syncer
242 242
243 #endif // COMPONENTS_SYNC_CORE_BASE_NODE_H_ 243 #endif // COMPONENTS_SYNC_CORE_BASE_NODE_H_
OLDNEW
« no previous file with comments | « components/sync/core/DEPS ('k') | components/sync/core/data_batch_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698