// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_BLOB_TESTING_FAKE_BLOB_REGISTRY_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_BLOB_TESTING_FAKE_BLOB_REGISTRY_H_ #include "mojo/public/cpp/system/data_pipe_drainer.h" #include "third_party/blink/public/mojom/blob/blob_registry.mojom-blink.h" namespace blink { // Mocked BlobRegistry implementation for testing. Simply keeps track of all // blob registrations and blob lookup requests, binding each blob request to a // FakeBlob instance with the correct uuid. class FakeBlobRegistry : public mojom::blink::BlobRegistry { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_BLOB_TESTING_FAKE_BLOB_REGISTRY_H_