// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/test/payments/test_event_waiter.h" #include <iostream> namespace payments { std::ostream& operator<<(std::ostream& out, TestEvent event) { … } EventWaiter::EventWaiter(std::list<TestEvent> expected_event_sequence, bool wait_for_single_event) : … { … } EventWaiter::~EventWaiter() = default; bool EventWaiter::Wait() { … } void EventWaiter::OnEvent(TestEvent current_event) { … } } // namespace payments