OLD | NEW |
1 // Copyright (c) 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/internal_api/public/read_node.h" | 5 #include "sync/internal_api/public/read_node.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "sync/internal_api/public/base_transaction.h" | 8 #include "sync/internal_api/public/base_transaction.h" |
9 #include "sync/syncable/base_transaction.h" | |
10 #include "sync/syncable/entry.h" | 9 #include "sync/syncable/entry.h" |
| 10 #include "sync/syncable/syncable_base_transaction.h" |
11 | 11 |
12 namespace syncer { | 12 namespace syncer { |
13 | 13 |
14 ////////////////////////////////////////////////////////////////////////// | 14 ////////////////////////////////////////////////////////////////////////// |
15 // ReadNode member definitions | 15 // ReadNode member definitions |
16 ReadNode::ReadNode(const BaseTransaction* transaction) | 16 ReadNode::ReadNode(const BaseTransaction* transaction) |
17 : entry_(NULL), transaction_(transaction) { | 17 : entry_(NULL), transaction_(transaction) { |
18 DCHECK(transaction); | 18 DCHECK(transaction); |
19 } | 19 } |
20 | 20 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 return INIT_FAILED_ENTRY_NOT_GOOD; | 87 return INIT_FAILED_ENTRY_NOT_GOOD; |
88 if (entry_->Get(syncable::IS_DEL)) | 88 if (entry_->Get(syncable::IS_DEL)) |
89 return INIT_FAILED_ENTRY_IS_DEL; | 89 return INIT_FAILED_ENTRY_IS_DEL; |
90 ModelType model_type = GetModelType(); | 90 ModelType model_type = GetModelType(); |
91 LOG_IF(WARNING, model_type == UNSPECIFIED || model_type == TOP_LEVEL_FOLDER) | 91 LOG_IF(WARNING, model_type == UNSPECIFIED || model_type == TOP_LEVEL_FOLDER) |
92 << "SyncAPI InitByTagLookup referencing unusually typed object."; | 92 << "SyncAPI InitByTagLookup referencing unusually typed object."; |
93 return DecryptIfNecessary() ? INIT_OK : INIT_FAILED_DECRYPT_IF_NECESSARY; | 93 return DecryptIfNecessary() ? INIT_OK : INIT_FAILED_DECRYPT_IF_NECESSARY; |
94 } | 94 } |
95 | 95 |
96 } // namespace syncer | 96 } // namespace syncer |
OLD | NEW |