Index: content/renderer/gpu/delegated_compositor_output_surface.h |
diff --git a/content/renderer/gpu/delegated_compositor_output_surface.h b/content/renderer/gpu/delegated_compositor_output_surface.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..891d6caf3b6c93548811d56dadc59498fc372e2d |
--- /dev/null |
+++ b/content/renderer/gpu/delegated_compositor_output_surface.h |
@@ -0,0 +1,23 @@ |
+// 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 CONTENT_RENDERER_GPU_DELEGATED_COMPOSITOR_OUTPUT_SURFACE_H_ |
+#define CONTENT_RENDERER_GPU_DELEGATED_COMPOSITOR_OUTPUT_SURFACE_H_ |
+ |
+#include "content/renderer/gpu/compositor_output_surface.h" |
+ |
+namespace content { |
+ |
+class DelegatedCompositorOutputSurface : public CompositorOutputSurface { |
+ public: |
+ DelegatedCompositorOutputSurface( |
+ int32 routing_id, |
+ WebGraphicsContext3DCommandBufferImpl* context3d, |
+ cc::SoftwareOutputDevice* software); |
+ virtual ~DelegatedCompositorOutputSurface() {} |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_RENDERER_GPU_DELEGATED_COMPOSITOR_OUTPUT_SURFACE_H_ |