| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class WebContentLayer; | 42 class WebContentLayer; |
| 43 class WebContentLayerClient; | 43 class WebContentLayerClient; |
| 44 class WebDisplayItemList; | 44 class WebDisplayItemList; |
| 45 class WebExternalTextureLayer; | 45 class WebExternalTextureLayer; |
| 46 class WebExternalTextureLayerClient; | 46 class WebExternalTextureLayerClient; |
| 47 class WebFilterAnimationCurve; | 47 class WebFilterAnimationCurve; |
| 48 class WebFilterOperations; | 48 class WebFilterOperations; |
| 49 class WebFloatAnimationCurve; | 49 class WebFloatAnimationCurve; |
| 50 class WebGraphicsContext3D; | 50 class WebGraphicsContext3D; |
| 51 class WebImageLayer; | 51 class WebImageLayer; |
| 52 class WebNinePatchLayer; | |
| 53 class WebLayer; | 52 class WebLayer; |
| 54 class WebScrollbarLayer; | 53 class WebScrollbarLayer; |
| 55 class WebScrollbarThemeGeometry; | 54 class WebScrollbarThemeGeometry; |
| 56 class WebScrollOffsetAnimationCurve; | 55 class WebScrollOffsetAnimationCurve; |
| 57 class WebTransformAnimationCurve; | 56 class WebTransformAnimationCurve; |
| 58 class WebTransformOperations; | 57 class WebTransformOperations; |
| 59 | 58 |
| 60 class WebCompositorSupport { | 59 class WebCompositorSupport { |
| 61 public: | 60 public: |
| 62 | 61 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 | 96 |
| 98 virtual WebDisplayItemList* createDisplayItemList() { return nullptr; } | 97 virtual WebDisplayItemList* createDisplayItemList() { return nullptr; } |
| 99 | 98 |
| 100 protected: | 99 protected: |
| 101 virtual ~WebCompositorSupport() { } | 100 virtual ~WebCompositorSupport() { } |
| 102 }; | 101 }; |
| 103 | 102 |
| 104 } | 103 } |
| 105 | 104 |
| 106 #endif // WebCompositorSupport_h | 105 #endif // WebCompositorSupport_h |
| OLD | NEW |