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

Side by Side Diff: chrome/browser/sync/test/integration/quiesce_status_change_checker.h

Issue 165393010: Draft: Moving code out of ProfileSyncServiceHarness (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_QUIESCE_STATUS_CHANGE_CHECKER_H_
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_QUIESCE_STATUS_CHANGE_CHECKER_H_
7
8 #include <vector>
9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "chrome/browser/sync/test/integration/multi_client_status_change_checke r.h"
13
14 class ProfileSyncService;
15 class ProfileSyncServiceObserver;
16
17 class QuiesceStatusChangeChecker : public MultiClientStatusChangeChecker {
18 public:
19 explicit QuiesceStatusChangeChecker(
20 std::vector<ProfileSyncService*> services);
21 virtual ~QuiesceStatusChangeChecker();
22
23 // MultiClientStatusChangeChecker implementations.
24 virtual bool IsExitConditionSatisfied() OVERRIDE;
25 virtual std::string GetDebugMessage() const OVERRIDE;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(QuiesceStatusChangeChecker);
29 };
30
31 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_QUIESCE_STATUS_CHANGE_CHECKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698