// 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 CC_TEST_FAKE_RASTER_BUFFER_PROVIDER_H_ #define CC_TEST_FAKE_RASTER_BUFFER_PROVIDER_H_ #include <memory> #include <vector> #include "cc/raster/raster_buffer_provider.h" namespace cc { // Fake RasterBufferProvider that just no-ops all calls. class FakeRasterBufferProviderImpl : public RasterBufferProvider { … }; } // namespace cc #endif // CC_TEST_FAKE_RASTER_BUFFER_PROVIDER_H_