| OLD | NEW |
| (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_ |
| OLD | NEW |