// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "storage/browser/test/blob_test_utils.h" #include "base/containers/span.h" #include "base/memory/raw_ptr.h" #include "base/run_loop.h" #include "mojo/public/cpp/system/data_pipe_drainer.h" namespace storage { namespace { // Helper class to copy a blob to a string. class DataPipeDrainerClient : public mojo::DataPipeDrainer::Client { … }; } // namespace std::string BlobToString(blink::mojom::Blob* blob) { … } } // namespace storage