| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "WebCompositorAnimation.h" | 32 #include "WebCompositorAnimation.h" |
| 33 #include "WebCompositorAnimationCurve.h" | 33 #include "WebCompositorAnimationCurve.h" |
| 34 #include "WebFloatPoint.h" | 34 #include "WebFloatPoint.h" |
| 35 #include "WebLayerTreeView.h" | 35 #include "WebLayerTreeView.h" |
| 36 #include "WebScrollbar.h" | 36 #include "WebScrollbar.h" |
| 37 #include "WebScrollbarThemePainter.h" | 37 #include "WebScrollbarThemePainter.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 class WebCompositorAnimationCurve; | 41 class WebCompositorAnimationCurve; |
| 42 class WebCompositorAnimationPlayer; |
| 43 class WebCompositorAnimationTimeline; |
| 42 class WebCompositorOutputSurface; | 44 class WebCompositorOutputSurface; |
| 43 class WebContentLayer; | 45 class WebContentLayer; |
| 44 class WebContentLayerClient; | 46 class WebContentLayerClient; |
| 45 class WebDisplayItemList; | 47 class WebDisplayItemList; |
| 46 class WebExternalTextureLayer; | 48 class WebExternalTextureLayer; |
| 47 class WebExternalTextureLayerClient; | 49 class WebExternalTextureLayerClient; |
| 48 class WebFilterAnimationCurve; | 50 class WebFilterAnimationCurve; |
| 49 class WebFilterOperations; | 51 class WebFilterOperations; |
| 50 class WebFloatAnimationCurve; | 52 class WebFloatAnimationCurve; |
| 51 class WebGraphicsContext3D; | 53 class WebGraphicsContext3D; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 virtual WebFloatAnimationCurve* createFloatAnimationCurve() { return 0; } | 98 virtual WebFloatAnimationCurve* createFloatAnimationCurve() { return 0; } |
| 97 | 99 |
| 98 virtual WebScrollOffsetAnimationCurve* createScrollOffsetAnimationCurve(WebF
loatPoint targetValue, WebCompositorAnimationCurve::TimingFunctionType) { return
0; } | 100 virtual WebScrollOffsetAnimationCurve* createScrollOffsetAnimationCurve(WebF
loatPoint targetValue, WebCompositorAnimationCurve::TimingFunctionType) { return
0; } |
| 99 | 101 |
| 100 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return
0; } | 102 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return
0; } |
| 101 | 103 |
| 102 virtual WebTransformOperations* createTransformOperations() { return 0; } | 104 virtual WebTransformOperations* createTransformOperations() { return 0; } |
| 103 | 105 |
| 104 virtual WebFilterOperations* createFilterOperations() { return 0; } | 106 virtual WebFilterOperations* createFilterOperations() { return 0; } |
| 105 | 107 |
| 108 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return 0; } |
| 109 |
| 110 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return 0
; } |
| 111 |
| 106 protected: | 112 protected: |
| 107 virtual ~WebCompositorSupport() { } | 113 virtual ~WebCompositorSupport() { } |
| 108 }; | 114 }; |
| 109 | 115 |
| 110 } | 116 } |
| 111 | 117 |
| 112 #endif // WebCompositorSupport_h | 118 #endif // WebCompositorSupport_h |
| OLD | NEW |