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

Side by Side Diff: chrome/test/live_sync/live_extensions_sync_test.h

Issue 4732005: [Sync] Added some basic extension sync integration tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed whitespace Created 10 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698