| OLD | NEW |
| 1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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 LayerChromium_h | 6 #ifndef LayerChromium_h |
| 7 #define LayerChromium_h | 7 #define LayerChromium_h |
| 8 | 8 |
| 9 #if USE(ACCELERATED_COMPOSITING) | 9 #if USE(ACCELERATED_COMPOSITING) |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include <wtf/PassOwnPtr.h> | 22 #include <wtf/PassOwnPtr.h> |
| 23 #include <wtf/PassRefPtr.h> | 23 #include <wtf/PassRefPtr.h> |
| 24 #include <wtf/RefCounted.h> | 24 #include <wtf/RefCounted.h> |
| 25 #include <wtf/Vector.h> | 25 #include <wtf/Vector.h> |
| 26 | 26 |
| 27 namespace WebKit { | 27 namespace WebKit { |
| 28 class WebAnimationDelegate; | 28 class WebAnimationDelegate; |
| 29 class WebLayerScrollClient; | 29 class WebLayerScrollClient; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace cc { |
| 33 | 33 |
| 34 class CCActiveAnimation; | 34 class CCActiveAnimation; |
| 35 struct CCAnimationEvent; | 35 struct CCAnimationEvent; |
| 36 class CCLayerAnimationDelegate; | 36 class CCLayerAnimationDelegate; |
| 37 class CCLayerImpl; | 37 class CCLayerImpl; |
| 38 class CCLayerTreeHost; | 38 class CCLayerTreeHost; |
| 39 class CCTextureUpdateQueue; | 39 class CCTextureUpdateQueue; |
| 40 class ScrollbarLayerChromium; | 40 class ScrollbarLayerChromium; |
| 41 struct CCAnimationEvent; | 41 struct CCAnimationEvent; |
| 42 struct CCRenderingStats; | 42 struct CCRenderingStats; |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 WebKit::WebAnimationDelegate* m_layerAnimationDelegate; | 366 WebKit::WebAnimationDelegate* m_layerAnimationDelegate; |
| 367 WebKit::WebLayerScrollClient* m_layerScrollClient; | 367 WebKit::WebLayerScrollClient* m_layerScrollClient; |
| 368 }; | 368 }; |
| 369 | 369 |
| 370 void sortLayers(Vector<RefPtr<LayerChromium> >::iterator, Vector<RefPtr<LayerChr
omium> >::iterator, void*); | 370 void sortLayers(Vector<RefPtr<LayerChromium> >::iterator, Vector<RefPtr<LayerChr
omium> >::iterator, void*); |
| 371 | 371 |
| 372 } | 372 } |
| 373 #endif // USE(ACCELERATED_COMPOSITING) | 373 #endif // USE(ACCELERATED_COMPOSITING) |
| 374 | 374 |
| 375 #endif | 375 #endif |
| OLD | NEW |