Chromium Code Reviews| Index: cc/web_compositor_frame.h |
| diff --git a/cc/web_compositor_frame.h b/cc/web_compositor_frame.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..719f69bd5d9decc42a9584661f299e56def1c4c7 |
| --- /dev/null |
| +++ b/cc/web_compositor_frame.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright (c) 2012 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 CC_WEB_COMPOSITOR_FRAME_H_ |
| +#define CC_WEB_COMPOSITOR_FRAME_H_ |
| + |
| +#include <vector> |
| + |
| +namespace WebCore { |
| +class CCRenderPass; |
| +} // namespace WebCore |
| + |
| +namespace WebKit { |
|
danakj
2012/09/21 20:51:41
How come this is WebKit::WebCompositorFrame and no
|
| + |
| +struct WebCompositorFrame { |
| + std::vector<WebCore::CCRenderPass*> render_passes; |
| +}; |
| + |
| +struct WebCompositorFrameAck { |
| +}; |
| + |
| +} // namespace WebKit |
| + |
| +#endif // CC_WEB_COMPOSITOR_FRAME_H_ |