OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_TEST_LIVE_SYNC_LIVE_EXTENSIONS_SYNC_TEST_H_ | |
6 #define CHROME_TEST_LIVE_SYNC_LIVE_EXTENSIONS_SYNC_TEST_H_ | |
7 #pragma once | |
8 | |
9 #include <vector> | |
10 | |
11 #include "base/basictypes.h" | |
12 #include "base/compiler_specific.h" | |
13 #include "base/scoped_temp_dir.h" | |
14 #include "base/ref_counted.h" | |
15 #include "chrome/test/live_sync/live_extensions_sync_test_base.h" | |
16 | |
17 class Extension; | |
18 class Profile; | |
19 | |
20 class LiveExtensionsSyncTest : public LiveExtensionsSyncTestBase { | |
21 public: | |
22 explicit LiveExtensionsSyncTest(TestType test_type); | |
23 virtual ~LiveExtensionsSyncTest(); | |
24 | |
25 protected: | |
26 static bool HasSameExtensions(Profile* profile1, Profile* profile2); | |
Raghu Simha
2010/11/10 21:42:41
I have a suggestion here: Tests will be easier to
akalin
2010/11/12 01:20:44
Done, although I added the functions I actually us
| |
27 | |
28 private: | |
29 DISALLOW_COPY_AND_ASSIGN(LiveExtensionsSyncTest); | |
30 }; | |
31 | |
32 #endif // CHROME_TEST_LIVE_SYNC_LIVE_EXTENSIONS_SYNC_TEST_H_ | |
OLD | NEW |