Index: gpu/command_buffer/service/async_pixel_transfer_manager_stub.h |
diff --git a/gpu/command_buffer/service/async_pixel_transfer_manager_stub.h b/gpu/command_buffer/service/async_pixel_transfer_manager_stub.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ba538e2c73645c50944ac66f9c7742e0dbef3d4a |
--- /dev/null |
+++ b/gpu/command_buffer/service/async_pixel_transfer_manager_stub.h |
@@ -0,0 +1,30 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_ |
+#define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_ |
+ |
+#include "gpu/command_buffer/service/async_pixel_transfer_manager.h" |
+ |
+namespace gpu { |
+ |
+class AsyncPixelTransferDelegateStub; |
+ |
+class AsyncPixelTransferManagerStub : public AsyncPixelTransferManager { |
+ public: |
+ AsyncPixelTransferManagerStub(); |
+ virtual ~AsyncPixelTransferManagerStub(); |
+ |
+ // AsyncPixelTransferManager implementation: |
+ virtual AsyncPixelTransferDelegate* GetAsyncPixelTransferDelegate() OVERRIDE; |
+ |
+ private: |
+ scoped_ptr<AsyncPixelTransferDelegateStub> delegate_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferManagerStub); |
+}; |
+ |
+} // namespace gpu |
+ |
+#endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_ |