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

Side by Side Diff: sync/test/fake_server/bookmark_entity.h

Issue 629733002: replace OVERRIDE and FINAL with override and final in sync/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « sync/test/fake_encryptor.h ('k') | sync/test/fake_server/bookmark_entity_builder.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_H_ 5 #ifndef SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_H_
6 #define SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_H_ 6 #define SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 const std::string& originator_cache_guid, 42 const std::string& originator_cache_guid,
43 const std::string& originator_client_item_id, 43 const std::string& originator_client_item_id,
44 const sync_pb::UniquePosition& unique_position, 44 const sync_pb::UniquePosition& unique_position,
45 const sync_pb::EntitySpecifics& specifics, 45 const sync_pb::EntitySpecifics& specifics,
46 bool is_folder, 46 bool is_folder,
47 const std::string& parent_id, 47 const std::string& parent_id,
48 int64 creation_time, 48 int64 creation_time,
49 int64 last_modified_time); 49 int64 last_modified_time);
50 50
51 // FakeServerEntity implementation. 51 // FakeServerEntity implementation.
52 virtual std::string GetParentId() const OVERRIDE; 52 virtual std::string GetParentId() const override;
53 virtual void SerializeAsProto(sync_pb::SyncEntity* proto) OVERRIDE; 53 virtual void SerializeAsProto(sync_pb::SyncEntity* proto) override;
54 virtual bool IsDeleted() const OVERRIDE; 54 virtual bool IsDeleted() const override;
55 virtual bool IsFolder() const OVERRIDE; 55 virtual bool IsFolder() const override;
56 56
57 private: 57 private:
58 // All member values have equivalent fields in SyncEntity. 58 // All member values have equivalent fields in SyncEntity.
59 std::string originator_cache_guid_; 59 std::string originator_cache_guid_;
60 std::string originator_client_item_id_; 60 std::string originator_client_item_id_;
61 sync_pb::UniquePosition unique_position_; 61 sync_pb::UniquePosition unique_position_;
62 sync_pb::EntitySpecifics specifics_; 62 sync_pb::EntitySpecifics specifics_;
63 bool is_folder_; 63 bool is_folder_;
64 std::string parent_id_; 64 std::string parent_id_;
65 int64 creation_time_; 65 int64 creation_time_;
66 int64 last_modified_time_; 66 int64 last_modified_time_;
67 }; 67 };
68 68
69 } // namespace fake_server 69 } // namespace fake_server
70 70
71 #endif // SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_H_ 71 #endif // SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_H_
OLDNEW
« no previous file with comments | « sync/test/fake_encryptor.h ('k') | sync/test/fake_server/bookmark_entity_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698