// 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 "mojo/public/cpp/bindings/pending_flush.h" #include <ostream> #include <utility> #include "mojo/public/cpp/bindings/async_flusher.h" namespace mojo { PendingFlush::PendingFlush(AsyncFlusher* flusher) { … } PendingFlush::PendingFlush(PendingFlush&& other) = default; PendingFlush& PendingFlush::operator=(PendingFlush&& other) = default; PendingFlush::~PendingFlush() = default; ScopedMessagePipeHandle PendingFlush::PassPipe() { … } } // namespace mojo