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 24 matching lines...) Expand all Loading... |
35 namespace cc { | 35 namespace cc { |
36 class Layer; | 36 class Layer; |
37 } | 37 } |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class WebContentLayer; | 41 class WebContentLayer; |
42 class WebContentLayerClient; | 42 class WebContentLayerClient; |
43 class WebExternalTextureLayer; | 43 class WebExternalTextureLayer; |
44 class WebExternalTextureLayerClient; | 44 class WebExternalTextureLayerClient; |
45 class WebGraphicsContext3D; | |
46 class WebImageLayer; | 45 class WebImageLayer; |
47 class WebLayer; | 46 class WebLayer; |
48 class WebScrollbarLayer; | 47 class WebScrollbarLayer; |
49 class WebScrollbarThemeGeometry; | 48 class WebScrollbarThemeGeometry; |
50 | 49 |
51 class WebCompositorSupport { | 50 class WebCompositorSupport { |
52 public: | 51 public: |
53 | 52 |
54 // Layers ------------------------------------------------------- | 53 // Layers ------------------------------------------------------- |
55 | 54 |
(...skipping 12 matching lines...) Expand all Loading... |
68 | 67 |
69 virtual WebScrollbarLayer* createSolidColorScrollbarLayer(WebScrollbar::Orie
ntation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar) {
return nullptr; } | 68 virtual WebScrollbarLayer* createSolidColorScrollbarLayer(WebScrollbar::Orie
ntation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar) {
return nullptr; } |
70 | 69 |
71 protected: | 70 protected: |
72 virtual ~WebCompositorSupport() { } | 71 virtual ~WebCompositorSupport() { } |
73 }; | 72 }; |
74 | 73 |
75 } | 74 } |
76 | 75 |
77 #endif // WebCompositorSupport_h | 76 #endif // WebCompositorSupport_h |
OLD | NEW |