| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 #ifndef CCRenderSurface_h | 6 #ifndef CCRenderSurface_h |
| 7 #define CCRenderSurface_h | 7 #define CCRenderSurface_h |
| 8 | 8 |
| 9 #if USE(ACCELERATED_COMPOSITING) | 9 #if USE(ACCELERATED_COMPOSITING) |
| 10 | 10 |
| 11 #include "CCRenderPass.h" | 11 #include "CCRenderPass.h" |
| 12 #include "CCSharedQuadState.h" | 12 #include "CCSharedQuadState.h" |
| 13 #include "FloatRect.h" | 13 #include "FloatRect.h" |
| 14 #include "IntRect.h" | 14 #include "IntRect.h" |
| 15 #include <public/WebTransformationMatrix.h> | 15 #include <public/WebTransformationMatrix.h> |
| 16 #include <wtf/Noncopyable.h> | 16 #include <wtf/Noncopyable.h> |
| 17 | 17 |
| 18 namespace WebCore { | 18 namespace cc { |
| 19 | 19 |
| 20 class CCDamageTracker; | 20 class CCDamageTracker; |
| 21 class CCQuadSink; | 21 class CCQuadSink; |
| 22 class CCRenderPassSink; | 22 class CCRenderPassSink; |
| 23 class CCLayerImpl; | 23 class CCLayerImpl; |
| 24 | 24 |
| 25 struct CCAppendQuadsData; | 25 struct CCAppendQuadsData; |
| 26 | 26 |
| 27 class CCRenderSurface { | 27 class CCRenderSurface { |
| 28 WTF_MAKE_NONCOPYABLE(CCRenderSurface); | 28 WTF_MAKE_NONCOPYABLE(CCRenderSurface); |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 int m_targetRenderSurfaceLayerIndexHistory; | 119 int m_targetRenderSurfaceLayerIndexHistory; |
| 120 int m_currentLayerIndexHistory; | 120 int m_currentLayerIndexHistory; |
| 121 | 121 |
| 122 friend struct CCLayerIteratorActions; | 122 friend struct CCLayerIteratorActions; |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 } | 125 } |
| 126 #endif // USE(ACCELERATED_COMPOSITING) | 126 #endif // USE(ACCELERATED_COMPOSITING) |
| 127 | 127 |
| 128 #endif | 128 #endif |
| OLD | NEW |