| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 5 #ifndef CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
| 6 #define CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 6 #define CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" | |
| 10 #include "cc/blink/cc_blink_export.h" | 9 #include "cc/blink/cc_blink_export.h" |
| 11 #include "third_party/WebKit/public/platform/WebCompositorAnimationCurve.h" | 10 #include "third_party/WebKit/public/platform/WebCompositorAnimationCurve.h" |
| 12 #include "third_party/WebKit/public/platform/WebCompositorSupport.h" | 11 #include "third_party/WebKit/public/platform/WebCompositorSupport.h" |
| 13 #include "third_party/WebKit/public/platform/WebContentLayerClient.h" | 12 #include "third_party/WebKit/public/platform/WebContentLayerClient.h" |
| 14 #include "third_party/WebKit/public/platform/WebLayer.h" | 13 #include "third_party/WebKit/public/platform/WebLayer.h" |
| 15 #include "third_party/WebKit/public/platform/WebTransformOperations.h" | 14 #include "third_party/WebKit/public/platform/WebTransformOperations.h" |
| 16 | 15 |
| 17 namespace blink { | 16 namespace blink { |
| 18 class WebGraphicsContext3D; | 17 class WebGraphicsContext3D; |
| 19 } | 18 } |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 virtual blink::WebFilterOperations* createFilterOperations(); | 58 virtual blink::WebFilterOperations* createFilterOperations(); |
| 60 virtual blink::WebDisplayItemList* createDisplayItemList(); | 59 virtual blink::WebDisplayItemList* createDisplayItemList(); |
| 61 | 60 |
| 62 private: | 61 private: |
| 63 DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl); | 62 DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl); |
| 64 }; | 63 }; |
| 65 | 64 |
| 66 } // namespace cc_blink | 65 } // namespace cc_blink |
| 67 | 66 |
| 68 #endif // CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 67 #endif // CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
| OLD | NEW |