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 23 matching lines...) Expand all Loading... |
34 #include "WebScrollbar.h" | 34 #include "WebScrollbar.h" |
35 #include "WebScrollbarThemePainter.h" | 35 #include "WebScrollbarThemePainter.h" |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 class WebCompositorAnimationCurve; | 39 class WebCompositorAnimationCurve; |
40 class WebCompositorAnimationPlayer; | 40 class WebCompositorAnimationPlayer; |
41 class WebCompositorAnimationTimeline; | 41 class WebCompositorAnimationTimeline; |
42 class WebContentLayer; | 42 class WebContentLayer; |
43 class WebContentLayerClient; | 43 class WebContentLayerClient; |
44 class WebDisplayItemList; | |
45 class WebExternalTextureLayer; | 44 class WebExternalTextureLayer; |
46 class WebExternalTextureLayerClient; | 45 class WebExternalTextureLayerClient; |
47 class WebFilterAnimationCurve; | 46 class WebFilterAnimationCurve; |
48 class WebFilterOperations; | 47 class WebFilterOperations; |
49 class WebFloatAnimationCurve; | 48 class WebFloatAnimationCurve; |
50 class WebGraphicsContext3D; | 49 class WebGraphicsContext3D; |
51 class WebImageLayer; | 50 class WebImageLayer; |
52 class WebLayer; | 51 class WebLayer; |
53 class WebScrollbarLayer; | 52 class WebScrollbarLayer; |
54 class WebScrollbarThemeGeometry; | 53 class WebScrollbarThemeGeometry; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return
nullptr; } | 86 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return
nullptr; } |
88 | 87 |
89 virtual WebTransformOperations* createTransformOperations() { return nullptr
; } | 88 virtual WebTransformOperations* createTransformOperations() { return nullptr
; } |
90 | 89 |
91 virtual WebFilterOperations* createFilterOperations() { return nullptr; } | 90 virtual WebFilterOperations* createFilterOperations() { return nullptr; } |
92 | 91 |
93 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return nullp
tr; } | 92 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return nullp
tr; } |
94 | 93 |
95 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return n
ullptr; } | 94 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return n
ullptr; } |
96 | 95 |
97 virtual WebDisplayItemList* createDisplayItemList() { return nullptr; } | |
98 | |
99 protected: | 96 protected: |
100 virtual ~WebCompositorSupport() { } | 97 virtual ~WebCompositorSupport() { } |
101 }; | 98 }; |
102 | 99 |
103 } | 100 } |
104 | 101 |
105 #endif // WebCompositorSupport_h | 102 #endif // WebCompositorSupport_h |
OLD | NEW |