// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_MATCH_STATUS_CHECKER_H_ #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_MATCH_STATUS_CHECKER_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/sync/test/integration/status_change_checker.h" #include "components/sync/base/data_type.h" #include "components/sync/test/fake_server.h" namespace fake_server { // A matcher that checks a generic condition against the fake server. This class // is abstract where any subclass will be responsible for implementing some of // StatusChangeChecker's virtual methods. class FakeServerMatchStatusChecker : public StatusChangeChecker, public FakeServer::Observer { … }; } // namespace fake_server #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_MATCH_STATUS_CHECKER_H_