OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chrome/browser/sync/internal_api/read_node.h" | 5 #include "sync/internal_api/read_node.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "chrome/browser/sync/internal_api/base_transaction.h" | 8 #include "sync/internal_api/base_transaction.h" |
9 #include "sync/syncable/syncable.h" | 9 #include "sync/syncable/syncable.h" |
10 | 10 |
11 namespace sync_api { | 11 namespace sync_api { |
12 | 12 |
13 ////////////////////////////////////////////////////////////////////////// | 13 ////////////////////////////////////////////////////////////////////////// |
14 // ReadNode member definitions | 14 // ReadNode member definitions |
15 ReadNode::ReadNode(const BaseTransaction* transaction) | 15 ReadNode::ReadNode(const BaseTransaction* transaction) |
16 : entry_(NULL), transaction_(transaction) { | 16 : entry_(NULL), transaction_(transaction) { |
17 DCHECK(transaction); | 17 DCHECK(transaction); |
18 } | 18 } |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 syncable::ModelType model_type = GetModelType(); | 90 syncable::ModelType model_type = GetModelType(); |
91 LOG_IF(WARNING, model_type == syncable::UNSPECIFIED || | 91 LOG_IF(WARNING, model_type == syncable::UNSPECIFIED || |
92 model_type == syncable::TOP_LEVEL_FOLDER) | 92 model_type == syncable::TOP_LEVEL_FOLDER) |
93 << "SyncAPI InitByTagLookup referencing unusually typed object."; | 93 << "SyncAPI InitByTagLookup referencing unusually typed object."; |
94 return DecryptIfNecessary() ? INIT_OK : INIT_FAILED_DECRYPT_IF_NECESSARY; | 94 return DecryptIfNecessary() ? INIT_OK : INIT_FAILED_DECRYPT_IF_NECESSARY; |
95 } | 95 } |
96 | 96 |
97 } // namespace sync_api | 97 } // namespace sync_api |
OLD | NEW |