| 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 c46e37698dbfe07ec98ae23caa3d71e1fbf00fdf..26940c5dc88018aabf1ea56ee9a95c845f942be9 100644
|
| --- a/sync/internal_api/public/write_node.h
|
| +++ b/sync/internal_api/public/write_node.h
|
| @@ -62,10 +62,10 @@ class SYNC_EXPORT WriteNode : public BaseNode {
|
| // populate the node.
|
|
|
| // BaseNode implementation.
|
| - virtual InitByLookupResult InitByIdLookup(int64 id) OVERRIDE;
|
| + virtual InitByLookupResult InitByIdLookup(int64 id) override;
|
| virtual InitByLookupResult InitByClientTagLookup(
|
| ModelType model_type,
|
| - const std::string& tag) OVERRIDE;
|
| + const std::string& tag) override;
|
|
|
| // Create a new bookmark node with the specified parent and predecessor. Use
|
| // a NULL |predecessor| to indicate that this is to be the first child.
|
| @@ -178,9 +178,9 @@ class SYNC_EXPORT WriteNode : public BaseNode {
|
| const sync_pb::AttachmentMetadata& attachment_metadata);
|
|
|
| // Implementation of BaseNode's abstract virtual accessors.
|
| - virtual const syncable::Entry* GetEntry() const OVERRIDE;
|
| + virtual const syncable::Entry* GetEntry() const override;
|
|
|
| - virtual const BaseTransaction* GetTransaction() const OVERRIDE;
|
| + virtual const BaseTransaction* GetTransaction() const override;
|
|
|
| syncable::MutableEntry* GetMutableEntryForTest();
|
|
|
|
|