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

Side by Side Diff: components/sync/syncable/test_user_share.h

Issue 2407163004: [Sync] Move some directory-related things from core/ to syncable/. (Closed)
Patch Set: Created 4 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 (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 // A handy class that takes care of setting up and destroying a 5 // A handy class that takes care of setting up and destroying a
6 // UserShare instance for unit tests that require one. 6 // UserShare instance for unit tests that require one.
7 // 7 //
8 // The expected usage is to make this a component of your test fixture: 8 // The expected usage is to make this a component of your test fixture:
9 // 9 //
10 // class AwesomenessTest : public testing::Test { 10 // class AwesomenessTest : public testing::Test {
11 // public: 11 // public:
12 // virtual void SetUp() { 12 // virtual void SetUp() {
13 // test_user_share_.SetUp(); 13 // test_user_share_.SetUp();
14 // } 14 // }
15 // virtual void TearDown() { 15 // virtual void TearDown() {
16 // test_user_share_.TearDown(); 16 // test_user_share_.TearDown();
17 // } 17 // }
18 // protected: 18 // protected:
19 // TestUserShare test_user_share_; 19 // TestUserShare test_user_share_;
20 // }; 20 // };
21 // 21 //
22 // Then, in your tests: 22 // Then, in your tests:
23 // 23 //
24 // TEST_F(AwesomenessTest, IsMaximal) { 24 // TEST_F(AwesomenessTest, IsMaximal) {
25 // ReadTransaction trans(test_user_share_.user_share()); 25 // ReadTransaction trans(test_user_share_.user_share());
26 // ... 26 // ...
27 // } 27 // }
28 // 28 //
29 29
30 #ifndef COMPONENTS_SYNC_CORE_TEST_TEST_USER_SHARE_H_ 30 #ifndef COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
31 #define COMPONENTS_SYNC_CORE_TEST_TEST_USER_SHARE_H_ 31 #define COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
32 32
33 #include <stddef.h> 33 #include <stddef.h>
34 34
35 #include <memory> 35 #include <memory>
36 36
37 #include "base/macros.h" 37 #include "base/macros.h"
38 #include "components/sync/base/model_type.h" 38 #include "components/sync/base/model_type.h"
39 #include "components/sync/core/user_share.h" 39 #include "components/sync/syncable/user_share.h"
40 40
41 namespace syncer { 41 namespace syncer {
42 42
43 class SyncEncryptionHandler; 43 class SyncEncryptionHandler;
44 class TestDirectorySetterUpper; 44 class TestDirectorySetterUpper;
45 45
46 namespace syncable { 46 namespace syncable {
47 class TestTransactionObserver; 47 class TestTransactionObserver;
48 } 48 }
49 49
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 private: 84 private:
85 std::unique_ptr<TestDirectorySetterUpper> dir_maker_; 85 std::unique_ptr<TestDirectorySetterUpper> dir_maker_;
86 std::unique_ptr<UserShare> user_share_; 86 std::unique_ptr<UserShare> user_share_;
87 87
88 DISALLOW_COPY_AND_ASSIGN(TestUserShare); 88 DISALLOW_COPY_AND_ASSIGN(TestUserShare);
89 }; 89 };
90 90
91 } // namespace syncer 91 } // namespace syncer
92 92
93 #endif // COMPONENTS_SYNC_CORE_TEST_TEST_USER_SHARE_H_ 93 #endif // COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
OLDNEW
« no previous file with comments | « components/sync/syncable/read_transaction.cc ('k') | components/sync/syncable/test_user_share.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698