| 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 19 matching lines...) Expand all Loading... |
| 30 #include "WebFloatPoint.h" | 30 #include "WebFloatPoint.h" |
| 31 #include "WebLayerTreeView.h" | 31 #include "WebLayerTreeView.h" |
| 32 #include "WebScrollbar.h" | 32 #include "WebScrollbar.h" |
| 33 #include "WebScrollbarThemePainter.h" | 33 #include "WebScrollbarThemePainter.h" |
| 34 | 34 |
| 35 #include <memory> | 35 #include <memory> |
| 36 | 36 |
| 37 namespace cc { | 37 namespace cc { |
| 38 class Layer; | 38 class Layer; |
| 39 class TextureLayerClient; | 39 class TextureLayerClient; |
| 40 } | 40 } // namespace cc |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class WebContentLayer; | 44 class WebContentLayer; |
| 45 class WebContentLayerClient; | 45 class WebContentLayerClient; |
| 46 class WebExternalTextureLayer; | 46 class WebExternalTextureLayer; |
| 47 class WebImageLayer; | 47 class WebImageLayer; |
| 48 class WebLayer; | 48 class WebLayer; |
| 49 class WebScrollbarLayer; | 49 class WebScrollbarLayer; |
| 50 class WebScrollbarThemeGeometry; | 50 class WebScrollbarThemeGeometry; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 77 | 77 |
| 78 virtual std::unique_ptr<WebScrollbarLayer> CreateSolidColorScrollbarLayer( | 78 virtual std::unique_ptr<WebScrollbarLayer> CreateSolidColorScrollbarLayer( |
| 79 WebScrollbar::Orientation, | 79 WebScrollbar::Orientation, |
| 80 int thumb_thickness, | 80 int thumb_thickness, |
| 81 int track_start, | 81 int track_start, |
| 82 bool is_left_side_vertical_scrollbar) = 0; | 82 bool is_left_side_vertical_scrollbar) = 0; |
| 83 | 83 |
| 84 protected: | 84 protected: |
| 85 virtual ~WebCompositorSupport() {} | 85 virtual ~WebCompositorSupport() {} |
| 86 }; | 86 }; |
| 87 } | 87 } // namespace blink |
| 88 | 88 |
| 89 #endif // WebCompositorSupport_h | 89 #endif // WebCompositorSupport_h |
| OLD | NEW |