| Index: sync/internal_api/public/write_node.h
|
| diff --git a/sync/internal_api/public/write_node.h b/sync/internal_api/public/write_node.h
|
| index 29182de8b0a61613edbd6f3a97aa96c108520aa0..2965741b78e5e4bbbb0ce98bc84a4a5b28ebc1af 100644
|
| --- a/sync/internal_api/public/write_node.h
|
| +++ b/sync/internal_api/public/write_node.h
|
| @@ -65,7 +65,7 @@ class WriteNode : public BaseNode {
|
| // BaseNode implementation.
|
| virtual InitByLookupResult InitByIdLookup(int64 id) OVERRIDE;
|
| virtual InitByLookupResult InitByClientTagLookup(
|
| - syncable::ModelType model_type,
|
| + syncer::ModelType model_type,
|
| const std::string& tag) OVERRIDE;
|
|
|
| // Create a new node with the specified parent and predecessor. |model_type|
|
| @@ -74,7 +74,7 @@ class WriteNode : public BaseNode {
|
| // to indicate that this is to be the first child.
|
| // |predecessor| must be a child of |new_parent| or NULL. Returns false on
|
| // failure.
|
| - bool InitByCreation(syncable::ModelType model_type,
|
| + bool InitByCreation(syncer::ModelType model_type,
|
| const BaseNode& parent,
|
| const BaseNode* predecessor);
|
|
|
| @@ -85,7 +85,7 @@ class WriteNode : public BaseNode {
|
| // actually undelete it
|
| // Client unique tagged nodes must NOT be folders.
|
| InitUniqueByCreationResult InitUniqueByCreation(
|
| - syncable::ModelType model_type,
|
| + syncer::ModelType model_type,
|
| const BaseNode& parent,
|
| const std::string& client_tag);
|
|
|
| @@ -178,7 +178,7 @@ class WriteNode : public BaseNode {
|
| void* operator new(size_t size); // Node is meant for stack use only.
|
|
|
| // Helper to set model type. This will clear any specifics data.
|
| - void PutModelType(syncable::ModelType model_type);
|
| + void PutModelType(syncer::ModelType model_type);
|
|
|
| // Helper to set the previous node.
|
| bool PutPredecessor(const BaseNode* predecessor) WARN_UNUSED_RESULT;
|
|
|