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

Side by Side Diff: sync/test/fake_server/bookmark_entity_builder.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
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_BUILDER_H_ 5 #ifndef SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_BUILDER_H_
6 #define SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_BUILDER_H_ 6 #define SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_BUILDER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "sync/internal_api/public/base/model_type.h" 11 #include "sync/internal_api/public/base/model_type.h"
12 #include "sync/test/fake_server/entity_builder.h" 12 #include "sync/test/fake_server/entity_builder.h"
13 #include "sync/test/fake_server/fake_server_entity.h" 13 #include "sync/test/fake_server/fake_server_entity.h"
14 #include "url/gurl.h" 14 #include "url/gurl.h"
15 15
16 namespace fake_server { 16 namespace fake_server {
17 17
18 // Builder for BookmarkEntity objects. 18 // Builder for BookmarkEntity objects.
19 class BookmarkEntityBuilder : public EntityBuilder { 19 class BookmarkEntityBuilder : public EntityBuilder {
20 public: 20 public:
21 BookmarkEntityBuilder(const std::string& title, 21 BookmarkEntityBuilder(const std::string& title,
22 const GURL& url, 22 const GURL& url,
23 const std::string& originator_cache_guid, 23 const std::string& originator_cache_guid,
24 const std::string& originator_client_item_id); 24 const std::string& originator_client_item_id);
25 25
26 virtual ~BookmarkEntityBuilder(); 26 virtual ~BookmarkEntityBuilder();
27 27
28 // EntityBuilder 28 // EntityBuilder
29 virtual scoped_ptr<FakeServerEntity> Build() OVERRIDE; 29 virtual scoped_ptr<FakeServerEntity> Build() override;
30 30
31 private: 31 private:
32 // The bookmark's URL. 32 // The bookmark's URL.
33 GURL url_; 33 GURL url_;
34 std::string originator_cache_guid_; 34 std::string originator_cache_guid_;
35 std::string originator_client_item_id_; 35 std::string originator_client_item_id_;
36 }; 36 };
37 37
38 } // namespace fake_server 38 } // namespace fake_server
39 39
40 #endif // SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_BUILDER_H_ 40 #endif // SYNC_TEST_FAKE_SERVER_BOOKMARK_ENTITY_BUILDER_H_
OLDNEW
« no previous file with comments | « sync/test/fake_server/bookmark_entity.h ('k') | sync/test/fake_server/fake_server_http_post_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698