Chromium Code Reviews| Index: chrome/test/live_sync/live_extensions_sync_test.h |
| diff --git a/chrome/test/live_sync/live_extensions_sync_test.h b/chrome/test/live_sync/live_extensions_sync_test.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..41d765e62409b2718a6d09d8225d91b6ab575740 |
| --- /dev/null |
| +++ b/chrome/test/live_sync/live_extensions_sync_test.h |
| @@ -0,0 +1,32 @@ |
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_TEST_LIVE_SYNC_LIVE_EXTENSIONS_SYNC_TEST_H_ |
| +#define CHROME_TEST_LIVE_SYNC_LIVE_EXTENSIONS_SYNC_TEST_H_ |
| +#pragma once |
| + |
| +#include <vector> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/compiler_specific.h" |
| +#include "base/scoped_temp_dir.h" |
| +#include "base/ref_counted.h" |
| +#include "chrome/test/live_sync/live_extensions_sync_test_base.h" |
| + |
| +class Extension; |
| +class Profile; |
| + |
| +class LiveExtensionsSyncTest : public LiveExtensionsSyncTestBase { |
| + public: |
| + explicit LiveExtensionsSyncTest(TestType test_type); |
| + virtual ~LiveExtensionsSyncTest(); |
| + |
| + protected: |
| + 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
|
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(LiveExtensionsSyncTest); |
| +}; |
| + |
| +#endif // CHROME_TEST_LIVE_SYNC_LIVE_EXTENSIONS_SYNC_TEST_H_ |